import type { ToolCall } from '@ai-sdk/provider-utils'; import type { InvalidToolInputError, NoSuchToolError, ToolCallRepairFunction, ToolSet } from 'ai'; import type { BuiltTool } from '../../types'; export declare const fixToolCall: (options: { toolCall: ToolCall; error: NoSuchToolError | InvalidToolInputError; }, toolMap: Map) => ReturnType>>;