/** * The parsing engine to use. Supported values: * * `parse_performance`: Full-featured parsing engine with highest accuracy (default) * * `parse_light`: Lightweight parsing engine optimized for high-volume, cost-sensitive ingestion. Uses the new layout model with full layout support and the markdown target at lower cost and latency, but performs worse than `parse_performance` on lower-quality scans, harder handwriting, larger tables, non-Latin-based languages, and dense checkbox regions. */ export declare const ParseConfigEngine: { readonly ParsePerformance: "parse_performance"; readonly ParseLight: "parse_light"; }; export type ParseConfigEngine = (typeof ParseConfigEngine)[keyof typeof ParseConfigEngine] | string;