declare type Options = {
    aloneValueName?: string;
};
/**
 * Main function. Clears the given xml and then starts the recursion
 * @param xmlStr
 * @param options the options
 */
export default function xml2json(xmlStr: string, options?: Options): any;
export {};
