import { ToolDefinition, ToolResult } from "./types.js"; /** * Execute a tool with given arguments */ export declare function executeTool(tool: ToolDefinition, args: Record): Promise; /** * Validate that a tool exists on the system */ export declare function validateToolExists(toolName: string): Promise; /** * Get tool version */ export declare function getToolVersion(toolName: string): Promise;