export default function parse(xml: any): {
    declaration: {
        attributes: {};
    };
    root: {
        name: any;
        attributes: {};
        children: any[];
        content: any;
    };
};
