import { BinanceSignedClient } from '../../../clients'; import { spot } from '../../../info'; export interface UniversalTransferPayload { fromEmail?: string; toEmail?: string; fromAccountType: spot.TransferAccountType; toAccountType: spot.TransferAccountType; asset: string; amount: number; } export declare type UniversalTransferResponse = number; export declare function universalTransfer(client: BinanceSignedClient, payload: UniversalTransferPayload): Promise;