import { StringDict } from "../../../parsing/index.js";
import { ExtractionResponse } from "../../../v2/product/index.js";
/**
 * Document level classification.
 */
export declare class ClassificationClassifier {
    /**
     * The document type, as identified on given classification values.
     */
    documentType: string;
    /**
     * The extraction response associated with the classification.
     */
    extractionResponse?: ExtractionResponse;
    constructor(serverResponse: StringDict);
    toString(): string;
}
