/** * Compliance Framework Mapper * * Maps injection pattern categories to compliance framework identifiers: * - OWASP LLM Top 10 (2025) * - NIST AI 600-1 (Generative AI Profile) * - NIST AI RMF (AI Risk Management Framework - AI 100-1) * - NIST CSF 2.0 (Cybersecurity Framework 2.0) * - MITRE ATLAS (Adversarial Threat Landscape for AI Systems) * - ISO/IEC 42001:2023 (AI Management System - Annex A Controls) */ export interface FrameworkMappings { owasp_llm: string; nist_ai_600_1: string; nist_ai_rmf: string; nist_csf_2_0: string; mitre_atlas: string; iso_42001: string; } /** * Get framework mappings for a pattern category */ export declare function getFrameworkMappings(patternCategory: string): FrameworkMappings; /** * Get all supported frameworks */ export declare function getSupportedFrameworks(): string[]; //# sourceMappingURL=framework-mapper.d.ts.map