import { Serializable } from '../../../internal/interfaces/serializable';
export declare class CancelAllOrdersFailedSymbols implements Serializable {
    /**
     * symbol
     */
    symbol?: string;
    /**
     * error message
     */
    error?: 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): CancelAllOrdersFailedSymbols;
    /**
     * Create an object from Js Object.
     */
    static fromObject(jsonObject: Object): CancelAllOrdersFailedSymbols;
}
