/** * Advanced JSON Parser - Reconstruction and Recovery * * Handles truncated, malformed, and incomplete JSON with intelligent * reconstruction and fuzzy parsing capabilities. */ export interface ParseResult { success: boolean; workflow?: any; error?: string; recovered?: boolean; completionSuggestions?: string[]; } /** * Parse JSON with advanced error recovery */ export declare function parseWorkflowJSON(jsonString: string): ParseResult; /** * Validate workflow structure after parsing */ export declare function validateWorkflowStructure(workflow: any): { valid: boolean; errors: string[]; }; /** * Smart JSON extraction from mixed content */ export declare function extractJSON(text: string): ParseResult; //# sourceMappingURL=parser.d.ts.map