export interface ParsedTextToolCall { name: string; arguments: Record; } export interface TextToolCallParseResult { calls: ParsedTextToolCall[]; visibleText: string; recognizedProtocol: boolean; requiresRepair: boolean; } export declare function parseTextToolCalls(text: string, allowedNames: ReadonlySet): TextToolCallParseResult; //# sourceMappingURL=TextToolCallParser.d.ts.map