/** * Detail view for a virtual MCP server entry in the Workspace tree. * * Shown when the user clicks an `mcp-servers/.json` entry. Servers * aren't editable in-place — today the server endpoints only support * create + delete, matching the Settings UX they replaced. Users can * delete and recreate if they need to change a URL or headers. */ import React from "react"; import { type McpServer } from "./use-mcp-servers.js"; interface McpServerDetailProps { server: McpServer; } export declare function McpServerDetail({ server }: McpServerDetailProps): React.JSX.Element; export {}; //# sourceMappingURL=McpServerDetail.d.ts.map