import { PreMortemReport } from '../types.js'; export declare class PreMortem { private brain; private llm; constructor(); /** Run a pre-mortem on an upcoming task. */ run(taskDescription: string, projectDir: string, opts?: { limit?: number; }): Promise; private semanticRerank; private extractTerms; private estimateProbability; private mapImportanceToSeverity; private deriveMitigation; private scoreRisk; private summarize; private llmPredictions; } export declare function getPreMortem(): PreMortem; export declare function resetPreMortemForTests(): void; //# sourceMappingURL=pre-mortem.d.ts.map