/** * The status of the workflow step run: * * `"PENDING"` - The step run is waiting to be executed * * `"WAITING"` - The step run is waiting for a dependency to complete * * `"PROCESSING"` - The step run is currently executing * * `"PROCESSED"` - The step run completed successfully * * `"FAILED"` - The step run encountered an error * * `"CANCELLED"` - The step run was cancelled */ export declare const StepRunBaseStatus: { readonly Pending: "PENDING"; readonly Waiting: "WAITING"; readonly Processing: "PROCESSING"; readonly Processed: "PROCESSED"; readonly Failed: "FAILED"; readonly Cancelled: "CANCELLED"; }; export type StepRunBaseStatus = (typeof StepRunBaseStatus)[keyof typeof StepRunBaseStatus] | string;