import type { AgentContext } from "../context/AgentContext.js"; import type { ToolCallPresentation } from "../ToolCallPresentation.js"; import type { AnyDefinedTool } from "../types.js"; import type { ToolCall as ProviderToolCall } from "@slopus/rig-execution"; export type PresentedToolCall = ProviderToolCall & { presentation?: ToolCallPresentation; }; export declare function presentToolCall(toolCall: ProviderToolCall, tools: readonly AnyDefinedTool[], context: AgentContext): PresentedToolCall;