/** The base processor to use. For classifiers, this can be either `"classification_performance"` or `"classification_light"`. Defaults to `"classification_performance"` if not provided. See [Classification Changelog](https://docs.extend.ai/2026-02-09/changelog/classification/classification-performance) for more details. */ export declare const ClassifyBaseProcessor: { readonly ClassificationPerformance: "classification_performance"; readonly ClassificationLight: "classification_light"; }; export type ClassifyBaseProcessor = (typeof ClassifyBaseProcessor)[keyof typeof ClassifyBaseProcessor] | string;