export interface ToolResult { content: Array<{ type: 'text' | 'image'; text?: string; data?: string; mimeType?: string; }>; isError?: boolean; } export declare function handleToolCall(name: string, args: Record): Promise; //# sourceMappingURL=handler.d.ts.map