export declare const objToXML: (xmlStructure: string, obj: object) => string;
export declare function genXML(xmlStructure: string, obj: object, options?: {
    buffer?: string;
    password?: string;
    base64?: boolean;
}): Promise<string>;
export declare const xmlToJson: (xml: string) => any;
