import { BinanceSignedClient } from '../../../clients'; import { coinM } from '../../../info'; export interface ChangeMarginTypePayload { symbol: string; marginType: coinM.MarginType; } export interface ChangeMarginTypeResponse { code: number; msg: string; } export declare function changeMarginType(client: BinanceSignedClient, payload: ChangeMarginTypePayload): Promise;