import type * as Extend from "../index"; export interface LegacyClassificationConfig { /** The base processor to use. For classifiers, this must be either `"classification_performance"` or `"classification_light"`. See [Classification Changelog](https://docs.extend.ai/2026-02-09/changelog/classification/classification-performance) for more details. */ baseProcessor?: Extend.LegacyClassificationConfigBaseProcessor; /** The version of the `"classification_performance"` or `"classification_light"` processor to use. If this is provided, the `baseProcessor` must also be provided. See [Classification Changelog](https://docs.extend.ai/2026-02-09/changelog/classification/classification-performance) for more details. */ baseVersion?: string; /** Array of possible classifications for the document. */ classifications: Extend.LegacyClassification[]; /** Custom rules to guide the classification process in natural language. */ classificationRules?: string; /** Advanced configuration options. */ advancedOptions?: Extend.LegacyClassificationAdvancedOptions; /** Configuration options for the parsing process. */ parser?: Extend.ParseConfig; }