import { DepositMonthly, GlobalDailyLimit, YearlyLimit } from ".";
type DepositPaymentGateway = {
    monthly: DepositMonthly;
    yearly: YearlyLimit;
    daily: GlobalDailyLimit;
};
export type { DepositPaymentGateway };
