/** * File Analysis Utilities */ export declare class FileAnalyzer { private projectRoot; constructor(projectRoot: string); /** * Analyze file structure */ analyzeFileStructure(): Promise>; /** * Get recent workflows */ getRecentWorkflows(): Promise>>; /** * Extract key decisions from handoff content */ extractKeyDecisions(content: string): string[]; /** * Extract lessons learned from handoff content */ extractLessonsLearned(content: string): string[]; /** * Extract technical debt from handoff content */ extractTechnicalDebt(content: string): string[]; /** * Extract recommendations from handoff content */ extractRecommendations(content: string): string[]; /** * Generate snapshot summary */ generateSnapshotSummary(snapshot: Record): string; } //# sourceMappingURL=file-analyzer.d.ts.map