import { Polygon } from "../../../geometry/index.js";
import { StringDict } from "../../../parsing/index.js";
export declare class Word {
    /**
     * Contains the relative vertices coordinates (points) of a polygon containing
     * the field in the document.
     */
    polygon: Polygon;
    text: string;
    confidence: number;
    constructor(rawPrediction: StringDict);
}
