import { AnalyzerOptions } from '../types/command-options'; import { ProjectStructure } from './project-structure'; interface AnalysisResult { projectStructure: ProjectStructure; unusedFiles: string[]; reachableNodeIds: Set; } export declare function analyzeProject(projectRoot: string, options: AnalyzerOptions): Promise; export {};