/** * LLM response parsing for compilation plans. * * Parses raw JSON from the LLM into a typed EnhancedCompilationPlan, * handling missing or malformed fields gracefully. */ import type { EnhancedCompilationPlan } from '../../types'; /** * Parse the LLM's JSON response into an EnhancedCompilationPlan. * Handles missing/malformed fields gracefully. */ export declare function parsePlan(raw: string, stepCount: number): EnhancedCompilationPlan;