import type { Tool } from '@modelcontextprotocol/sdk/types.js'; import type { AuthContext } from '../types.js'; export declare const updateAgentTool: Tool; export declare function updateAgent(auth: AuthContext, args: { workspaceId?: string; agentId: string; name?: string; description?: string; customContext?: string; systemPrompt?: string; }): Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; isError?: never; }>; //# sourceMappingURL=update-agent.d.ts.map