/** * The status of a processor run (extract, classify, or split): * * `"PENDING"` - The run has been created and is waiting to be processed * * `"PROCESSING"` - The run is in progress * * `"PROCESSED"` - The run completed successfully * * `"FAILED"` - The run failed * * `"CANCELLED"` - The run was cancelled */ export declare const ProcessorRunStatus: { readonly Pending: "PENDING"; readonly Processing: "PROCESSING"; readonly Processed: "PROCESSED"; readonly Failed: "FAILED"; readonly Cancelled: "CANCELLED"; }; export type ProcessorRunStatus = (typeof ProcessorRunStatus)[keyof typeof ProcessorRunStatus] | string;