/** * Run Command * Executes the feature development loop for a specific feature */ export interface RunOptions { worktree?: boolean; resume?: boolean; model?: string; cli?: 'claude' | 'codex'; reviewCli?: 'claude' | 'codex'; maxIterations?: number; maxE2eAttempts?: number; reviewMode?: 'manual' | 'auto' | 'merge'; } /** * Run the feature development loop for a specific feature */ export declare function runCommand(feature: string, options?: RunOptions): Promise;