declare class SoapMessage {
    private headers;
    private body;
    private envelopeAttributes;
    constructor(headers: string[], body: string, envelopeAttributes: Record<string, string>);
    toString(): string;
}
export declare class SOAPMessageBuilder {
    private headers;
    private body;
    private envelopeAttributes;
    addHeader(header: string | undefined): this;
    setBody(body: string): this;
    build(): SoapMessage;
}
export {};
