import { XMLRawDocument } from '@src/types/facturaInterfaces';
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 parseElectronicBillXML: (xml: string) => XMLRawDocument;
