import { Message } from '../llm/types.js'; import { Tool, ToolCall, ToolContext } from '../types.js'; import { ToolCallResult } from './types.js'; /** * Executes a list of tool calls and returns the results */ export declare function executeTools(toolCalls: ToolCall[], tools: Tool[], messages: Message[], context: ToolContext): Promise; //# sourceMappingURL=toolExecutor.d.ts.map