export interface AnalyzeRunOptions { extensions: string; repoAlias?: string; scopeManifest?: string; scopePrefix?: string[]; } export declare function parseAnalyzeSummary(output: string): { totalSeconds: number; nodes: number; edges: number; }; export declare function buildAnalyzeArgs(repoPath: string, options: AnalyzeRunOptions): string[]; export declare function runAnalyze(repoPath: string, options: AnalyzeRunOptions): Promise<{ stdout: string; stderr: string; }>;