import { StringDict } from "../../../parsing/index.js";
import { OcrPage } from "./ocrPage.js";
/**
 * OCR result info.
 */
export declare class OcrResult {
    /**
     * List of OCR results for each page in the document.
     */
    pages: OcrPage[];
    constructor(serverResponse: StringDict);
    toString(): string;
}
