import type { SpecInfo } from '../types/index.js'; export interface Insight { severity: 'critical' | 'warning' | 'info'; message: string; specs: string[]; } /** * Generate smart insights for specs that need attention * Returns top 5 most important insights */ export declare function generateInsights(specs: SpecInfo[]): Insight[]; /** * Get detailed insight for a specific spec (with days overdue, etc.) */ export declare function getSpecInsightDetails(spec: SpecInfo): string | null; //# sourceMappingURL=insights.d.ts.map