import type { ChatCompletionMessageFunctionToolCall } from 'openai/resources/chat'; interface ParseXmlToolCallsResult { toolCalls: ChatCompletionMessageFunctionToolCall[]; textWithoutToolCalls: string; } export declare function parseXmlToolCalls(text: string): ParseXmlToolCallsResult; export {};