export interface ValidationError { file: string; line: number; column: number; message: string; severity: "error" | "warning"; source: "eslint" | "typescript"; code?: string; componentContext?: string; } export interface ValidationResult { valid: boolean; errors: ValidationError[]; fixedCode: string; } export interface ValidationOptions { skipSyntax?: boolean; skipTypes?: boolean; maxRetries?: number; } //# sourceMappingURL=validation.d.ts.map