export interface ToolCallResult { content: Array<{ type: 'text'; text: string; }>; isError?: boolean; } export declare function handleToolCall(name: string, args: Record): Promise; export declare function listTools(): { tools: { name: string; description: string; inputSchema: object; }[]; };