import { IInvoiceAdditionalFees, IInvoiceRow } from '../interfaces';
interface IFormatedTotals {
    total: IInvoiceAmount;
    tva: IInvoiceAmount;
    reduction: IInvoiceAmount;
    other_reductions: IInvoiceAmount[];
    tht: IInvoiceAmount;
    ttc: IInvoiceAmount;
}
interface IInvoiceAmount {
    value: number;
    formated: string;
}
export declare const invoiceAmounts: (rows: IInvoiceRow[], additionalFees: IInvoiceAdditionalFees) => IFormatedTotals;
export {};
