import { StringDict } from "../../../parsing/stringDict.js";
import { DataSchemaActiveOption } from "./dataSchemaActiveOption.js";
export declare class ExtractionActiveOptions {
    /**
     * Whether the RAG feature was activated.
     */
    rag: boolean;
    /**
     * Whether the Raw Text feature was activated.
     */
    rawText: boolean;
    /**
     * Whether the polygon feature was activated.
     */
    polygon: boolean;
    /**
     * Whether the confidence feature was activated.
     */
    confidence: boolean;
    /**
     * Whether the text context feature was activated.
     */
    textContext: boolean;
    /**
     * Data schema options provided for the inference.
     */
    dataSchema: DataSchemaActiveOption;
    constructor(serverResponse: StringDict);
    toString(): string;
}
