import { XmlElement } from './xmlElement';
/**
 * XML Builder class for constructing XML documents with matchers
 */
export declare class XmlBuilder {
    private root;
    constructor(_version: string, _charset: string, rootElement: string);
    build(callback: (doc: XmlElement) => void): string;
}
