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