import type { XmlNode } from './XmlNode.js';
import type { XmlParseOptions } from './XmlParseOptions.js';
/**
 * Parse XML into a JS object with no validation and some failure tolerance
 *
 * @param input - The input XML string
 * @param options - Optional parsing options
 * @returns The parsed XML
 *
 * @group XML
 *
 * @beta
 *
 * @example
 * {@includeCode ../../test/xml/parseXml.test.ts#example}
 */
export declare function parseXml(input: string, options?: XmlParseOptions): XmlNode;
//# sourceMappingURL=parseXml.d.ts.map