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