import { BinanceSignedClient } from '../../../clients'; export interface DustTransferResponse { totalServiceCharge: number; totalTransfered: number; transferResult: { amount: number; fromAsset: string; operateTime: Date; serviceChargeAmount: number; tranId: number; transferedAmount: number; }[]; } export declare function dustTransfer(client: BinanceSignedClient, assets: string[]): Promise;