import { Serializable } from '../../../internal/interfaces/serializable';
export declare class IsolatedMarginPositionChangeAssetsValue implements Serializable {
    /**
     *
     */
    total: string;
    /**
     *
     */
    hold: string;
    /**
     *
     */
    liabilityPrincipal: string;
    /**
     *
     */
    liabilityInterest: string;
    private constructor();
    /**
     * Convert the object to a JSON string.
     */
    toJson(): string;
    /**
     * Create an object from a JSON string.
     */
    static fromJson(input: string): IsolatedMarginPositionChangeAssetsValue;
    /**
     * Create an object from Js Object.
     */
    static fromObject(jsonObject: Object): IsolatedMarginPositionChangeAssetsValue;
}
