import { StringDict } from "../../../parsing/stringDict.js";
/**
 * Data schema options activated during the inference.
 */
export declare class DataSchemaActiveOption {
    /**
     * Whether to replace the data schema.
     */
    replace: boolean;
    constructor(serverResponse: StringDict);
    toString(): string;
}
