export interface SecurityRule { id: string; name: string; severity: "critical" | "high" | "medium" | "low" | "info"; owasp: string; description: string; pattern: RegExp; languages: string[]; fix: string; fixCode?: string; compliance?: string[]; exploit?: string; audit?: string; }