interface ValidationResult { valid: boolean; score: number; issues: { severity: 'error' | 'warning' | 'info'; category: string; message: string; line?: number; suggestion: string; }[]; patterns: { followed: string[]; violated: string[]; }; } export declare function validateGeneratedCode(code: string, context: string, targetFile?: string): Promise; export {}; //# sourceMappingURL=code-validator.d.ts.map