/** * Copyright 2025 Chris Bunting * * Secret Detection Patterns - 35+ patterns for detecting various types of secrets */ export interface SecretPattern { name: string; category: string; description: string; severity: 'critical' | 'high' | 'medium' | 'low'; pattern: RegExp; minLength?: number; validator?: (value: string) => boolean; recommendation: string; } /** * Comprehensive list of secret detection patterns * Covers 35+ types of secrets commonly found in code repositories */ export declare const secretPatterns: SecretPattern[]; //# sourceMappingURL=SecretPatterns.d.ts.map