import type { AgentTool, AgentToolCall } from "./types.ts"; export type ToolArgumentShim = (args: unknown) => unknown; export declare function prepareToolArguments(shim: ToolArgumentShim | undefined, args: unknown): unknown; export declare function prepareAgentToolCallArguments(tool: AgentTool, toolCall: AgentToolCall): AgentToolCall; //# sourceMappingURL=tool-arguments.d.ts.map