import type * as Extend from "../index"; /** * The configuration used for this processor run. The type of configuration will match the processor type. */ export type LegacyProcessorRunConfig = Extend.LegacyProcessorRunConfig.Classify | Extend.LegacyProcessorRunConfig.Extract | Extend.LegacyProcessorRunConfig.Splitter; export declare namespace LegacyProcessorRunConfig { interface Classify extends Extend.LegacyClassificationConfig { type: "CLASSIFY"; } interface Extract extends Extend.LegacyExtractionConfig { type: "EXTRACT"; } interface Splitter extends Extend.LegacySplitterConfig { type: "SPLITTER"; } }