import type { GraphNode, GraphEdge } from './types.js'; export type { GraphNode, GraphEdge } from './types.js'; export interface GraphData { projectRoot: string; nodes: GraphNode[]; edges: GraphEdge[]; } export interface ParseProjectOptions { /** Extra directory names to skip (merged with the built-in ignore list). */ ignore?: string[]; } export declare function parseProject(projectRoot: string, options?: ParseProjectOptions): GraphData; //# sourceMappingURL=index.d.ts.map