/** * CCPA / CPRA Controls * * California Consumer Privacy Act (Cal. Civ. Code §1798.100 et seq.), as amended * by the California Privacy Rights Act (CPRA). Only the provisions with a * software-security / data-protection nexus are modeled here (mirrors the GDPR * control set) — these map scan findings to the obligations that code can * satisfy or violate. * * @module compliance/ccpa */ import type { ComplianceControl } from "./types.js"; export declare const CCPA_CATEGORIES: readonly ["Reasonable Security", "Data Minimization", "Consumer Rights", "Sensitive Personal Information", "Transparency", "Service Providers"]; /** * CCPA/CPRA controls relevant to code security and data protection. */ export declare const CCPA_CONTROLS: ComplianceControl[]; //# sourceMappingURL=ccpa.d.ts.map