/** * Noah — Deviation Calculator * * The core three-variable guidance equation: * G(t) = f(FlightPlan(t), CurrentState(t), Δt) * * Map (flight plan) + Snapshot (Grillo assessment) + Time (temporal context) * = guidance output with deviation vectors, classification, and recommendations. * * MVP spec Section 6.2. */ import type { CorridorBounds, ExpectedScores } from '../types/flight-plan.js'; import type { ObservedScores, DeviationResult, TemporalContext } from '../types/guidance.js'; export declare class DeviationCalculator { /** * Core guidance equation. * * @param observed Snapshot: what Grillo measured * @param expected Map at Time: where the flight plan says we should be * @param corridor Acceptable deviation bounds * @param temporalContext Time: full temporal state */ calculate(observed: ObservedScores, expected: ExpectedScores, corridor: CorridorBounds, temporalContext: TemporalContext): DeviationResult; } //# sourceMappingURL=deviation-calculator.d.ts.map