/** * The status of a batch run: * * `"PENDING"` - The batch has been created and is waiting to be processed * * `"PROCESSING"` - The batch is currently being processed * * `"PROCESSED"` - All runs in the batch have completed successfully * * `"FAILED"` - The batch failed to process * * `"CANCELLED"` - The batch was cancelled */ export declare const BatchRunStatus: { readonly Pending: "PENDING"; readonly Processing: "PROCESSING"; readonly Processed: "PROCESSED"; readonly Failed: "FAILED"; readonly Cancelled: "CANCELLED"; }; export type BatchRunStatus = (typeof BatchRunStatus)[keyof typeof BatchRunStatus] | string;