export interface PlanCommandOptions { verbose?: boolean; /** Override AI provider for all roles. Overrides config.planner/generator/evaluator.provider. */ provider?: string; } export declare function runPlanCommand(taskDescription: string | undefined, projectRoot: string, options: PlanCommandOptions): Promise; export interface PlanAnswerOptions { verbose?: boolean; } /** * Resolve a single clarification question on a spec. * * Loads the spec, applies the answer, persists. If this answer was the last * open question, the spec status flips from `needs-clarification` to `ready` * (handled inside `resolveClarification`). */ export declare function runPlanAnswerCommand(specId: string, questionId: string, answer: string, projectRoot: string, options?: PlanAnswerOptions): Promise; export declare function runPlanAnswerInteractive(specId: string, projectRoot: string, options?: PlanAnswerOptions): Promise; //# sourceMappingURL=plan.d.ts.map