import { StringDict } from "../../../../parsing/stringDict.js";
export declare class RawTextPage {
    /**
     * The text content found on the page.
     */
    content: string;
    /**
     * @param serverResponse JSON response from the server.
     */
    constructor(serverResponse: StringDict);
}
