export declare const attrs: unique symbol; export declare const text: unique symbol; export interface xml_node { [attrs]?: Record; [text]?: string; [index: string]: xml_node | xml_node[] | string | string[] | number | number[]; } export declare const root: xml_node; export declare const ParseIt: (node: xml_node) => void;