import { BinanceSignedClient } from '../../../clients';
export interface QueryIsolatedMarginAccountInfoPayload {
}
export interface QueryIsolatedMarginAccountInfoResponse {
    coin: string;
}
export declare function queryIsolatedMarginAccountInfo(client: BinanceSignedClient, payload: QueryIsolatedMarginAccountInfoPayload): Promise<QueryIsolatedMarginAccountInfoResponse>;
