import { StringDict } from "../../../../parsing/stringDict.js";
import { RawTextPage } from "./rawTextPage.js";
export declare class RawText {
    /**
     * List of pages with their extracted text content.
     */
    pages: Array<RawTextPage>;
    constructor(serverResponse: StringDict);
    toString(): string;
}
