import { StringPool } from "./common";
import Source from "./source";
export default class XmlElement {
    private static parseChildren;
    readonly tag: string;
    readonly attributes: {
        [key: string]: any;
    };
    readonly children: {
        [key: string]: XmlElement[];
    };
    constructor(source: Source, stringPool?: StringPool);
    toString(): string;
}
