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