export interface IWithdraw { id: number; date: Date; coin: string; amount: number; fee: number; status: string; address: string; txid: string; bankAccountId?: number; auth: string; } export interface IWithdrawals { list: IWithdraw[]; isLoaded: boolean; } export declare class Withdraw implements IWithdraw { id: number; date: Date; coin: string; amount: number; fee: number; status: string; address: string; txid: string; bankAccountId?: number; auth: string; constructor(withdraw?: IWithdraw); } export declare class Withdrawals implements IWithdrawals { list: IWithdraw[]; isLoaded: boolean; constructor(withdrawals?: IWithdrawals); } //# sourceMappingURL=withdraw.d.ts.map