/** * ConversationAnalyzer - Queries conversation memory database */ import type { SQLiteManager } from '../storage/SQLiteManager.js'; import type { ConversationData } from './types.js'; export declare class ConversationAnalyzer { private db; constructor(db: SQLiteManager); /** * Analyze conversations for a project */ analyze(projectPath: string, sessionId?: string): Promise; private getDecisions; private getMistakes; private getRequirements; private getFileEdits; private getGitCommits; } //# sourceMappingURL=ConversationAnalyzer.d.ts.map