import type { ToolCall } from "../../types.js"; export declare function inferToolFromArgs(obj: Record): string | undefined; export declare function recognizeBareToolJson(text: string): { call?: ToolCall; argsOnly?: boolean; } | undefined;