export interface AttackPattern { id: string; category: string; pattern: RegExp; severity: 'critical' | 'high' | 'medium' | 'info'; description: string; } export declare const INJECTION_PATTERNS: AttackPattern[]; export declare const SECRET_PATTERNS: { id: string; pattern: RegExp; description: string; }[]; export declare const SENSITIVE_PATH_PATTERNS: { id: string; pattern: RegExp; description: string; }[]; export declare const DANGEROUS_TOOLS: string[]; export declare const DANGEROUS_PERMISSIONS: string[]; //# sourceMappingURL=injection-patterns.d.ts.map