import { BaseSettings } from "@certd/lib-server"; export type UserWalletWithdrawChannel = "alipay" | "bank"; export declare class SysWalletSetting extends BaseSettings { static __title__: string; static __key__: string; static __access__: string; minWithdrawAmount: number; withdrawChannels: UserWalletWithdrawChannel[]; withdrawBanks: string[]; } export declare class UserWalletWithdrawSetting extends BaseSettings { static __title__: string; static __key__: string; channel: UserWalletWithdrawChannel; realName: string; account: string; bankName: string; qrCode: string; }