import { StringDict } from "../../../parsing/stringDict.js";
import { Field } from "./field.js";
export interface FieldConstructor {
    prediction: StringDict;
    valueKey?: string;
    reconstructed?: boolean;
    pageId?: number | undefined;
}
/**
 * A field containing a text value.
 */
export declare class BooleanField extends Field {
    /** The value. */
    value?: boolean;
    constructor({ prediction, valueKey, reconstructed, pageId, }: FieldConstructor);
    toString(): string;
}
