import type { Project } from 'ts-morph'; import type { AnalysisModule } from './types.js'; /*** * Builds a deterministic module relationship graph for documentation renderers. */ export declare function analyzeModules(project: Project, options: { root: string; entrypoints: readonly string[]; excludePaths?: readonly string[]; }): AnalysisModule[];