/** * The status of a workflow run: * * `"PENDING"` - The workflow run is waiting to be processed * * `"PROCESSING"` - The workflow run is currently processing * * `"NEEDS_REVIEW"` - The workflow run requires manual review * * `"REJECTED"` - The workflow run was rejected during review * * `"PROCESSED"` - The workflow run completed successfully * * `"FAILED"` - The workflow run encountered an error * * `"CANCELLED"` - The workflow run was cancelled * * `"CANCELLING"` - The workflow run is being cancelled */ export declare const WorkflowRunStatus: { readonly Pending: "PENDING"; readonly Processing: "PROCESSING"; readonly NeedsReview: "NEEDS_REVIEW"; readonly Rejected: "REJECTED"; readonly Processed: "PROCESSED"; readonly Failed: "FAILED"; readonly Cancelled: "CANCELLED"; readonly Cancelling: "CANCELLING"; }; export type WorkflowRunStatus = (typeof WorkflowRunStatus)[keyof typeof WorkflowRunStatus] | string;