import type * as Extend from "../index"; /** * The configuration settings for this version of the document processor. The structure of this object will vary depending on the processor type. * * See the configuration section in the "Guides" tab, for yout specific processor type, for more details on the configuration settings. */ export type LegacyProcessorVersionConfig = Extend.LegacyProcessorVersionConfig.Classify | Extend.LegacyProcessorVersionConfig.Extract | Extend.LegacyProcessorVersionConfig.Splitter; export declare namespace LegacyProcessorVersionConfig { interface Classify extends Extend.LegacyClassificationConfig { type: "CLASSIFY"; } interface Extract extends Extend.LegacyExtractionConfig { type: "EXTRACT"; } interface Splitter extends Extend.LegacySplitterConfig { type: "SPLITTER"; } }