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; export declare const parseElectronicBillXML: (xml: string) => XMLRawDocument;