import { RestResponse } from '../../../model/common';
import { Response } from '../../../internal/interfaces/serializable';
export declare class GetMarginConfigResp implements Response<RestResponse> {
    /**
     * Available currencies for margin trade
     */
    currencyList: Array<string>;
    /**
     * Max. leverage available
     */
    maxLeverage: number;
    /**
     * The warning debt ratio of the forced liquidation
     */
    warningDebtRatio: string;
    /**
     * The debt ratio of the forced liquidation
     */
    liqDebtRatio: string;
    /**
     * Private constructor, please use the corresponding static methods to construct the object.
     */
    private constructor();
    /**
     * common response
     */
    commonResponse?: RestResponse;
    setCommonResponse(response: RestResponse): void;
    /**
     * Convert the object to a JSON string.
     */
    toJson(): string;
    /**
     * Create an object from a JSON string.
     */
    static fromJson(input: string): GetMarginConfigResp;
    /**
     * Create an object from Js Object.
     */
    static fromObject(jsonObject: Object): GetMarginConfigResp;
}
