/** * Noah — Temporal Recommendation Generator * * Generates human-readable recommendations based on deviation * vectors and temporal context. Advisory only — Commander decides. * MVP spec Section 6.2. */ import type { DeviationVector, TemporalContext } from '../types/guidance.js'; /** * Generate recommendations based on the deviation vector and temporal context. */ export declare function generateRecommendations(deviationVector: DeviationVector, temporalContext: TemporalContext): string[]; //# sourceMappingURL=recommendations.d.ts.map