import type { CliRunResult } from "./bearshell.js"; export type { WorkflowLoopFinalDecision } from "./workflow-loop-state.js"; export { workflowLoopResultForDecision, type WorkflowLoopResult, } from "./workflow-loop-rendering.js"; export type WorkflowLoopOptions = { readonly dryRun: boolean; readonly graceMs: number; readonly json: boolean; readonly maxIterations: number; readonly opencodeCommand: string; readonly projectDir?: string; readonly timeoutMs: number; }; export declare function runWorkflowLoopCommand(options: WorkflowLoopOptions): CliRunResult;