import type { WorkflowQueueItem, WorkflowRun } from "../../types.js"; interface QueueRequeueBackend { getRun(runId: string): Promise; enqueue(job: WorkflowQueueItem): Promise; } export declare function requeueRun(backend: QueueRequeueBackend, runId: string): Promise; export {}; //# sourceMappingURL=requeue-run.d.ts.map