type MonthlyLimit = {
    maximum_transactions_amount_per_month: number;
    remaining_transactions_amount_per_month: number;
    maximum_transactions_count_per_month: number;
    remaining_transactions_count_per_month: number;
};
export type { MonthlyLimit };
