/** * GDPR Compliance Module * * Privacy-first utilities for GDPR compliance across CREATE SOMETHING properties. * * @packageDocumentation */ export { type ConsentState, type ConsentSyncResult, type CookieConsentStatus, type CookieConsentState, CONSENT_STORAGE_KEY, COOKIE_CONSENT_STORAGE_KEY, getConsentState, setConsentState, updateAnalyticsConsent, clearConsentState, hasAnalyticsConsent, initializeConsent, syncConsentWithServer, updateAndSyncConsent, isDNTEnabled, shouldTrackAnalytics, getCookieConsentState, setCookieConsentState, acceptCookieConsent, hasCookieConsent, isCookieConsentPending, clearCookieConsentState, } from './consent.js';