import { Serializable } from '../../../internal/interfaces/serializable';
export declare class GetOpenOrdersReq implements Serializable {
    /**
     * symbol
     */
    symbol?: string;
    /**
     * Private constructor, please use the corresponding static methods to construct the object.
     */
    private constructor();
    /**
     * Creates a new instance of the `GetOpenOrdersReq` class.
     * The builder pattern allows step-by-step construction of a `GetOpenOrdersReq` object.
     */
    static builder(): GetOpenOrdersReqBuilder;
    /**
     * Creates a new instance of the `GetOpenOrdersReq` class with the given data.
     */
    static create(data: {
        /**
         * symbol
         */
        symbol?: string;
    }): GetOpenOrdersReq;
    /**
     * Convert the object to a JSON string.
     */
    toJson(): string;
    /**
     * Create an object from a JSON string.
     */
    static fromJson(input: string): GetOpenOrdersReq;
    /**
     * Create an object from Js Object.
     */
    static fromObject(jsonObject: Object): GetOpenOrdersReq;
}
export declare class GetOpenOrdersReqBuilder {
    readonly obj: GetOpenOrdersReq;
    constructor(obj: GetOpenOrdersReq);
    /**
     * symbol
     */
    setSymbol(value: string): GetOpenOrdersReqBuilder;
    /**
     * Get the final object.
     */
    build(): GetOpenOrdersReq;
}
