/** * ISO/IEC 42001:2023 — Artificial Intelligence Management System (AIMS) * * Annex A controls relevant to certifying AI systems and AI-generated * code, mapped to the platform's finding categories. This is the * auditable "SOC 2 for AI" — the framework Vaspera leads with for Agent * Certification. * * @module compliance/iso42001 */ import type { ComplianceControl } from "./types.js"; /** * ISO 42001 Annex A controls (representative set relevant to code/agent * certification — not the full management-system documentation set). */ export declare const ISO_42001_CONTROLS: ComplianceControl[]; /** Get all ISO 42001 controls. */ export declare function getISO42001Controls(): ComplianceControl[]; /** Get ISO 42001 controls in a given Annex A category. */ export declare function getISO42001ControlsByCategory(category: string): ComplianceControl[]; //# sourceMappingURL=iso42001.d.ts.map