import type { ParsedFiles, ComponentInventoryEntry, StoryIndex } from "../types.js"; import type { DesignSystemGraph } from "./types.js"; export interface GraphInputs { repoRoot: string; parsed: ParsedFiles; fileContents: Map; componentsModule: string | null; dsSelfMode: boolean; storyIndex: StoryIndex | null; excludePaths: string[]; baseInventory: ComponentInventoryEntry[]; componentFiles: Map; } export declare function buildDesignSystemGraph(inputs: GraphInputs): Promise;