/** * Noah — Temporal Go/No-Go Decision Matrix * * Enhances Grillo's standard pass/fail assessment with temporal context. * The decision matrix combines assessment result + guidance color + lifecycle phase. * * MVP spec Section 6.3: * * Assessment | Guidance Status | Temporal Decision * ────────────┼─────────────────┼────────────────── * PASS | GREEN | GO * PASS | YELLOW | CAUTION * PASS | RED | NO_GO (escalate) * FAIL | any | NO_GO * PASS+RECOV | GREEN | CAUTION (elevated scrutiny) * PASS+CRIT | any | CAUTION (financial stress) */ import type { GuidanceColor, TemporalGoNoGoResult } from '../types/guidance.js'; import { LifecyclePhase } from '../types/lifecycle.js'; export declare class TemporalDecisionMatrix { /** * Compute the temporal Go/No-Go decision. * * @param assessmentPassed Whether the Grillo assessment passed * @param guidanceStatus Current overall guidance color * @param lifecyclePhase Current lifecycle phase */ decide(assessmentPassed: boolean, guidanceStatus: GuidanceColor, lifecyclePhase: LifecyclePhase): TemporalGoNoGoResult; } //# sourceMappingURL=temporal-decision-matrix.d.ts.map