import Big from "big.js"; interface IWithdrawHistory { id: string; txHash: string; trader: string; collateralToken: string; amount: Big; blockNumber: number; timestamp: number; } export declare class WithdrawHistory implements IWithdrawHistory { readonly id: string; readonly txHash: string; readonly trader: string; readonly collateralToken: string; readonly amount: Big; readonly blockNumber: number; readonly timestamp: number; constructor({ id, txHash, trader, collateralToken, amount, blockNumber, timestamp }: IWithdrawHistory); } export {};