import type { InterviewResult } from './types.js'; import type { SemanticInference } from '../validation/semantic-types.js'; import type { ResponseSchemaEvolution } from '../baseline/response-schema-tracker.js'; import type { ErrorAnalysisSummary } from '../baseline/error-analyzer.js'; import type { DocumentationScore } from '../baseline/documentation-scorer.js'; export interface InterviewInsights { semanticInferences?: Record; schemaEvolution?: Record; errorAnalysisSummaries?: Record; documentationScore?: DocumentationScore; } /** * Build derived insights from an interview result. * These insights are used for documentation and JSON report enrichment. */ export declare function buildInterviewInsights(result: InterviewResult): InterviewInsights; //# sourceMappingURL=insights.d.ts.map