/** * Parses an XML string into an XML document, throwing errors on parser errors * instead of returning an XML document containing the parseerror. * * @param xml the string to parse * @returns an XML document corresponding to the content of the string */ export declare function parseXML(xml: string): XMLDocument;