import type { Tool } from "@modelcontextprotocol/sdk/types.js"; import type { DesignSystemGraph } from "../../graph/types.js"; export declare const getDesignSystemGraphTool: Tool; interface GetGraphInput { project_root?: unknown; } export declare function runGetDesignSystemGraph(input: GetGraphInput): Promise<{ schema_version: "1.0.0"; graph: DesignSystemGraph; }>; export {};