/** * JSON Repair Utility * Fixes common JSON syntax errors from AI responses */ /** * Attempt to repair malformed JSON from AI responses */ export declare function repairJson(text: string): string; /** * Parse JSON with repair attempts * Tries to fix common issues before parsing */ export declare function parseJsonSafe(text: string): T | null;