/** * Security Standards Database * OWASP Top 10, CWE, MITRE ATT&CK, SANS Top 25 */ import { SecurityStandard, ThreatType } from '../types'; /** * OWASP Top 10 2021 */ export declare const OWASP_TOP_10: Record; /** * Common Weakness Enumeration (CWE) */ export declare const CWE_DATABASE: Record; /** * MITRE ATT&CK Techniques */ export declare const MITRE_ATTACK: Record; /** * SANS Top 25 */ export declare const SANS_TOP_25: Record; /** * Map threat types to relevant security standards */ export declare function getStandardsForThreat(threatType: ThreatType): SecurityStandard[]; //# sourceMappingURL=standards.d.ts.map