import { IResponse } from "../../type"; interface IWithdraw { TOKEN: any; FIAT: string; } export declare function withdrawAll({ TOKEN, FIAT, }: IWithdraw): Promise; export {};