/** The type of the field. */ export declare const LegacyExtractionFieldType: { readonly String: "string"; readonly Number: "number"; readonly Currency: "currency"; readonly Boolean: "boolean"; readonly Date: "date"; readonly Array: "array"; readonly Enum: "enum"; readonly Object: "object"; readonly Signature: "signature"; }; export type LegacyExtractionFieldType = (typeof LegacyExtractionFieldType)[keyof typeof LegacyExtractionFieldType] | string;