/**
 * @fileoverview Tool executor for executing LLM tool calls
 *
 * This module provides utilities to execute tool calls from LLMs
 * and return the results.
 */
/**
 * Execute a tool call and return the result
 * @param toolName The name of the tool to execute
 * @param args The arguments for the tool
 * @returns The result of the tool call
 */
export declare function executeToolCall(toolName: string, args: any): Promise<any>;
