import 'reflect-metadata';
import { Serializable } from '../../../internal/interfaces/serializable';
export declare class GetMarkPriceDetailReq 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 `GetMarkPriceDetailReq` class.
     * The builder pattern allows step-by-step construction of a `GetMarkPriceDetailReq` object.
     */
    static builder(): GetMarkPriceDetailReqBuilder;
    /**
     * Creates a new instance of the `GetMarkPriceDetailReq` class with the given data.
     */
    static create(data: {
        /**
         * symbol
         */
        symbol?: string;
    }): GetMarkPriceDetailReq;
    /**
     * Convert the object to a JSON string.
     */
    toJson(): string;
    /**
     * Create an object from a JSON string.
     */
    static fromJson(input: string): GetMarkPriceDetailReq;
    /**
     * Create an object from Js Object.
     */
    static fromObject(jsonObject: Object): GetMarkPriceDetailReq;
}
export declare class GetMarkPriceDetailReqBuilder {
    readonly obj: GetMarkPriceDetailReq;
    constructor(obj: GetMarkPriceDetailReq);
    /**
     * symbol
     */
    setSymbol(value: string): GetMarkPriceDetailReqBuilder;
    /**
     * Get the final object.
     */
    build(): GetMarkPriceDetailReq;
}
