type YearlyLimit = {
    maximum_allowed_debit_balance: number;
    maximum_transactions_amount_per_year: number;
    remaining_transactions_amount_per_year: number;
    maximum_transactions_count_per_year: number;
    remaining_transactions_count_per_year: number;
};
export type { YearlyLimit };
