export interface Question { text: string; category: 'requirement' | 'tech' | 'dependency' | 'risk'; severity: '🔴' | '🟡' | '⚪'; } /** * 从迭代 ANALYSIS.md 提取所有待确认问题 */ export declare function extractQuestions(iterationDir: string): Promise; /** * 显示问题审查清单 */ export declare function showQuestionChecklist(questions: Question[], context?: string): void; //# sourceMappingURL=question-checklist.d.ts.map