export interface ParsedInvoiceFields { invoiceNumber: string; sellerNip: string; sellerName?: string; buyerNip: string; buyerName?: string; invoicingDate: string; grossAmountGrosze: number; currency: string; } export declare function parseInvoiceXml(xml: string): ParsedInvoiceFields; //# sourceMappingURL=xml.d.ts.map