import { WithdrawMonthlyYearly, WithdrawManual, WithdrawGeneral, WithdrawResellerPurchase, WithdrawUserPurchase } from ".";
type Withdraw = {
    withdraw_monthly_yearly: WithdrawMonthlyYearly;
    manual: WithdrawManual;
    general: WithdrawGeneral;
    reseller_purchase: WithdrawResellerPurchase;
    user_purchase: WithdrawUserPurchase;
    bank_transfer: WithdrawGeneral;
    check: WithdrawGeneral;
    cash: WithdrawGeneral;
    purchase: WithdrawGeneral;
    balance_inquiry: WithdrawGeneral;
};
export type { Withdraw };
