import { OcrWord } from "./ocrWord.js";
import { StringDict } from "../../../parsing/index.js";
export declare class OcrPage {
    /**
     * List of words extracted from the document page.
     */
    words: OcrWord[];
    /**
     * Full text content extracted from the document page.
     */
    content: string;
    constructor(serverResponse: StringDict);
    toString(): string;
}
