import { DepositGeneral, DepositManual, DepositMonthlyYearly, Others } from ".";
type Deposit = {
    deposit_monthly_yearly: DepositMonthlyYearly;
    manual: DepositManual;
    general: DepositGeneral;
    bank_transfer: Others;
    check: Others;
    refund: Others;
};
export type { Deposit };
