/** * The type of processor that was run: * * `"EXTRACT"` - Extraction processor * * `"SPLITTER"` - Splitting processor * * `"CLASSIFY"` - Classification processor */ export declare const LegacyProcessorRunSummaryType: { readonly Extract: "EXTRACT"; readonly Splitter: "SPLITTER"; readonly Classify: "CLASSIFY"; }; export type LegacyProcessorRunSummaryType = (typeof LegacyProcessorRunSummaryType)[keyof typeof LegacyProcessorRunSummaryType] | string;