import { XMLDocument } from "../types/parser/XML"; /** * A function to parse an XML document into an object. This only provides parsing capabilities, not querying. * @param input {string} - is the XML document in string format. */ export declare const ParseXML: (input: string) => XMLDocument;