/** The base processor to use. For extractors, this can be either `"extraction_performance"` or `"extraction_light"`. Defaults to `"extraction_performance"` if not provided. See [Extraction Changelog](https://docs.extend.ai/2026-02-09/changelog/extraction/extraction-performance) for more details. */ export declare const ExtractBaseProcessor: { readonly ExtractionPerformance: "extraction_performance"; readonly ExtractionLight: "extraction_light"; }; export type ExtractBaseProcessor = (typeof ExtractBaseProcessor)[keyof typeof ExtractBaseProcessor] | string;