import { BinanceSignedClient } from '../../../clients'; import { spot } from '../../../info'; export interface MarginTransferForSubAccountPayload { email: string; asset: string; amount: number; type: spot.MarginTransferTypeEnum; } export declare type MarginTransferForSubAccountResponse = string; export declare function marginTransferForSubAccount(client: BinanceSignedClient, payload: MarginTransferForSubAccountPayload): Promise;