export type McpToolInventoryGroup = { id: string; name: string; toolkitId?: string; tools: string[]; }; export type McpToolInventoryPopoverProps = { groups: McpToolInventoryGroup[]; className?: string; }; /** * A compact inventory trigger that expands into MCP-server groups. Each server * header stays pinned while only the open server's tools enter a virtualized * list, so very large tool sets stay responsive and the collapse control is * always one click away. */ export declare function McpToolInventoryPopover({ groups, className, }: McpToolInventoryPopoverProps): import("react").JSX.Element; //# sourceMappingURL=mcp-tool-inventory-popover.d.ts.map