import { BinanceSignedClient } from '../../../clients'; export interface TransferToMasterPayload { asset: string; amount: number; } export declare type TransferToMasterResponse = string; export declare function transferToMaster(client: BinanceSignedClient, payload: TransferToMasterPayload): Promise;