/** * The agent's "Tools & MCP" tab, split into a vertical sub-nav: * • Built-in tools — the managed runtime catalog (categories, toggles). * • Custom tools — tools authored at project level, toggled per agent. * • MCP Servers — external tools via Model Context Protocol (coming soon). */ export declare function ToolsPanel({ projectId, agentName, allowedTools, }: { projectId: string; agentName: string; allowedTools: string[]; }): import("react/jsx-runtime").JSX.Element; /** * Agent tools with a horizontal type filter — Built-in · Custom · MCP (soon). * One section at a time (single search each), instead of a nested sub-nav. */ export declare function AgentToolsPanel({ projectId, agentName, allowedTools, }: { projectId: string; agentName: string; allowedTools: string[]; }): import("react/jsx-runtime").JSX.Element; export declare function CustomToolsPanel({ projectId, agentName, allowedTools, }: { projectId: string; agentName: string; allowedTools: string[]; }): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=tools-panel.d.ts.map