import { ParsedReActResponse } from './types';
/**
 * Parse a ReAct response text into structured components
 */
export declare function parseReActResponse(text: string): ParsedReActResponse;
/**
 * Extract tool name and arguments from action text
 */
export declare function parseToolCall(actionText: string): {
    tool: string;
    args: Record<string, unknown>;
} | null;
