/**
* The format used for enrichment annotations in the output.
*
* * `xml`: Use XML-style tags for enrichment annotations, e.g. 1 or 1234567890
* * `bracket`: Use bracket-style notation for enrichment annotations, e.g. [page_number: 1] or [barcode: 1234567890]
*/
export declare const ParseConfigAdvancedOptionsEnrichmentFormat: {
readonly Xml: "xml";
readonly Bracket: "bracket";
};
export type ParseConfigAdvancedOptionsEnrichmentFormat = (typeof ParseConfigAdvancedOptionsEnrichmentFormat)[keyof typeof ParseConfigAdvancedOptionsEnrichmentFormat] | string;