type XmlValue = string | XmlObject | XmlValue[]; type XmlObject = { [key: string]: XmlValue; }; export declare function xmlParser(xmlInput: string): XmlObject; export {};