import type { UserWalletWithdrawChannel } from "../settings.js"; export type UserWalletWithdrawStatus = "pending" | "approved" | "rejected"; export declare class UserWalletWithdrawEntity { id: number; userId: number; amount: number; status: UserWalletWithdrawStatus; channel: UserWalletWithdrawChannel; realName: string; account: string; bankName: string; qrCode: string; auditUserId: number; auditRemark: string; auditTime: number; createTime: Date; updateTime: Date; }