import { StringDict } from "../../../parsing/stringDict.js";
import { OcrPage } from "./ocrPage.js";
export declare class MvisionV1 {
    /** List of words found on the page. */
    pages: OcrPage[];
    constructor(rawPrediction: StringDict);
    /**
     * Default string representation.
     */
    toString(): string;
}
