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