import { Serializable } from '../../../internal/interfaces/serializable';
export declare class GetIsolatedMarginSymbolsData implements Serializable {
    /**
     * symbol
     */
    symbol: string;
    /**
     * Symbol name
     */
    symbolName: string;
    /**
     * Base currency, e.g. BTC.
     */
    baseCurrency: string;
    /**
     * Quote currency, e.g. USDT.
     */
    quoteCurrency: string;
    /**
     * Max. leverage of this symbol
     */
    maxLeverage: number;
    /**
     *
     */
    flDebtRatio: string;
    /**
     *
     */
    tradeEnable: boolean;
    /**
     *
     */
    autoRenewMaxDebtRatio: string;
    /**
     *
     */
    baseBorrowEnable: boolean;
    /**
     *
     */
    quoteBorrowEnable: boolean;
    /**
     *
     */
    baseTransferInEnable: boolean;
    /**
     *
     */
    quoteTransferInEnable: boolean;
    /**
     *
     */
    baseBorrowCoefficient: string;
    /**
     *
     */
    quoteBorrowCoefficient: string;
    /**
     * Private constructor, please use the corresponding static methods to construct the object.
     */
    private constructor();
    /**
     * Convert the object to a JSON string.
     */
    toJson(): string;
    /**
     * Create an object from a JSON string.
     */
    static fromJson(input: string): GetIsolatedMarginSymbolsData;
    /**
     * Create an object from Js Object.
     */
    static fromObject(jsonObject: Object): GetIsolatedMarginSymbolsData;
}
