import { Polygon } from "../../../geometry/index.js";
import { StringDict } from "../../../parsing/index.js";
export declare class OcrWord {
    /**
     * Text content of the word.
     */
    content: string;
    /**
     * Position information as a list of points in clockwise order.
     */
    polygon: Polygon;
    constructor(serverResponse: StringDict);
    toString(): string;
}
