/** * Analyzer * * Orchestrates the full analysis pipeline: * 1. Load config * 2. Build dependency graph * 3. Evaluate rules * 4. Produce AnalysisResult */ import { AnalysisResult } from './types.js'; export interface AnalyzerOptions { projectRoot: string; configPath?: string; verbose?: boolean; } /** * Runs the full architecture analysis. */ export declare function analyze(options: AnalyzerOptions): Promise; //# sourceMappingURL=analyzer.d.ts.map