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