import { PrivacyRegime, RegimePurposeScopesConfig, TrackingPurpose } from "./core.mjs"; //#region src/constants.d.ts declare const UNKNOWN_DEFAULT_EXPERIENCE = "Unknown"; declare const GDPR_PURPOSES: [PrivacyRegime[], TrackingPurpose[]]; declare const DEFAULT_REGIME_TRACKING_PURPOSE_SCOPES: RegimePurposeScopesConfig; declare const DEFAULT_REGIME_PURPOSE_OPT_OUTS: RegimePurposeScopesConfig; declare const DEFAULT_EXPERIENCE_PURPOSE_OPT_OUTS: any; declare const DEFAULT_EXPERIENCE_PURPOSE_SCOPES: any; declare const REGIME_TIMEZONES: Record; declare const REGIME_DISPLAY_PRIORITY: Record; /** * These TCF Purposes cannot be allowed to process under legitimate interest legal basis * Source: * https://iabeurope.eu/iab-europe-transparency-consent-framework-policies/#:~:text=Appendix%20A:%20Definitions%20Of%20Purposes,%20Features%20And%20Categories%20Of%20Data */ declare const DEFAULT_RESTRICT_LEGIT_INTEREST_PROCESSING: number[]; //#endregion export { DEFAULT_EXPERIENCE_PURPOSE_OPT_OUTS, DEFAULT_EXPERIENCE_PURPOSE_SCOPES, DEFAULT_REGIME_PURPOSE_OPT_OUTS, DEFAULT_REGIME_TRACKING_PURPOSE_SCOPES, DEFAULT_RESTRICT_LEGIT_INTEREST_PROCESSING, GDPR_PURPOSES, REGIME_DISPLAY_PRIORITY, REGIME_TIMEZONES, UNKNOWN_DEFAULT_EXPERIENCE }; //# sourceMappingURL=constants.d.mts.map