/** * OutputParser - Validates and parses LLM responses into AgentOutput */ import { AgentOutput } from '../types'; /** * Parse JSON string to AgentOutput object with validation * @param jsonString - JSON string from LLM response * @returns Parsed AgentOutput or null if validation fails */ export declare function parseAgentOutput(jsonString: string): AgentOutput | null; /** * Extract JSON from markdown code blocks if present * LLMs sometimes wrap JSON in ```json ... ``` blocks */ export declare function extractJsonFromMarkdown(text: string): string; //# sourceMappingURL=OutputParser.d.ts.map