import type { NativeToolCall } from "../../types.js"; import type { AnthropicThinkingBlock, AnthropicWireContentBlock } from "./anthropic-tools.js"; export declare function parseAnthropicToolUseBlocks(content: AnthropicWireContentBlock[] | undefined): { text: string; thinkingText: string; thinkingBlocks: AnthropicThinkingBlock[]; toolCalls: NativeToolCall[]; thinkingSignature?: string; };