import type { InvoiceData } from "./types";
export declare function calculateTotals(invoice: InvoiceData): {
    subtotal: number;
    totalTax: number;
    discount: number;
    total: number;
};
