/** * Security Standards for Dependency Analysis * Maps dependency risks to OWASP, CWE, MITRE, and SANS standards */ import { SecurityStandard } from '../../types'; import { DependencyRiskCategory } from '../types'; /** * Get security standards for a dependency risk category */ export declare function getStandardsForDependencyRisk(category: DependencyRiskCategory, cwes?: string[]): SecurityStandard[]; /** * Get all dependency-related security standards */ export declare function getAllDependencyStandards(): SecurityStandard[]; //# sourceMappingURL=securityStandards.d.ts.map