export interface IInvoiceAdditionalFees {
    tva: number;
    reduction: IReduction | null;
    other_reductions: IReduction[];
}
interface IReduction {
    percentage_value: number;
    reason: string;
    icon_url?: string;
    description?: string;
}
export {};
