interface ValidationResult { isValid: boolean; errors: string[]; warnings: string[]; correctionsSuggested: string[]; runtimeSafe: boolean; } /** * MASTER VALIDATION PIPELINE - Multi-Layer Defense Against Corruption * Layer 1: Syntax validation * Layer 2: Variable completeness checking * Layer 3: Runtime safety analysis * Layer 4: Template placeholder detection */ export declare function validateJSXComprehensively(jsx: string, projectName: string): ValidationResult; /** * Pre-Creation Safety Check - Run before writing any JSX files */ export declare function validateBeforeProjectCreation(jsx: string, projectName: string): { safe: boolean; report: string; }; /** * Auto-Correction System - Attempt to fix common issues automatically */ export declare function autoCorrectCommonIssues(jsx: string): { corrected: string; fixes: string[]; }; export {}; //# sourceMappingURL=jsx-validation-pipeline.d.ts.map