import * as XML from './XML';
export declare class Element extends XML.Element {
    constructor(name: string, ...namespaces: string[]);
}
export declare class Header extends Element {
    action: string;
    to: string;
    actionElement: XML.Element;
    constructor(action: string, to: string);
}
export declare class Request extends Element {
    action: string;
    to: string;
    header: Element;
    body: Element;
    constructor(action: string, to: string, ...namespaces: string[]);
}
