import { Polygon } from "../../../../geometry/index.js";
import { StringDict } from "../../../../parsing/stringDict.js";
/**
 * A field's location on the document.
 */
export declare class FieldLocation {
    /** Position information as a list of points in clockwise order. */
    readonly polygon: Polygon;
    /** 0-based page index of where the polygon is located. */
    readonly page: any;
    constructor(serverResponse: StringDict);
    toString(): string;
}
