import { Command } from "commander"; import type { CommandOptions, OutputSchema, SingleResult } from "../../output/index.js"; import type { LoopRunInput } from "./types.js"; export interface LoopRunRow { id: string; status: string; name: string | null; cwd: string; } export interface LoopRunOptions extends CommandOptions { provider?: string; model?: string; mode?: string; verifyProvider?: string; verifyModel?: string; verifyMode?: string; verify?: string; verifyCheck?: string[]; archive?: boolean; name?: string; sleep?: string; maxIterations?: string; maxTime?: string; } export declare const loopRunSchema: OutputSchema; export declare function addLoopRunOptions(command: Command): Command; export declare function buildLoopRunInput(prompt: string, options: LoopRunOptions): LoopRunInput; export type LoopRunResult = SingleResult; export declare function runLoopRunCommand(prompt: string, options: LoopRunOptions, _command: Command): Promise; //# sourceMappingURL=run.d.ts.map