import TaxBehaviour from "../constants/tax-behaviour.js";
interface ITax {
    id: string;
    transactionAmountWithTaxUnit: number;
    expiresAt: Date;
    createdAt: Date;
    totalAmountUnit: number;
    totalTaxPercent: number;
    behaviour: TaxBehaviour;
}
export { ITax as default };
