import { Field } from "./field";
import { BaseFieldConstructor } from "./base";
/**
 * A company registration item.
 */
export declare class CompanyRegistrationField extends Field {
    /** Registration identifier. */
    value?: string;
    /** Type of company registration. */
    type: string;
    constructor({ prediction, valueKey, reconstructed, pageId, }: BaseFieldConstructor);
    toTableLine(): string;
    toString(): string;
    private printableValues;
}
