//#region src/enums/consentExpiry.d.ts /** * Enum of options available for behavior to exhibit when the user's consent has expired */ declare const OnConsentExpiry: { /** Reprompts the user to change or confirm their selection */Prompt: "Prompt"; /** Resets the user's consent and reprompts them */ ResetAll: "ResetAll"; /** Resets the user's opted-in purposes and reprompts them */ ResetOptIns: "ResetOptIns"; }; /** Override type */ type OnConsentExpiry = (typeof OnConsentExpiry)[keyof typeof OnConsentExpiry]; //#endregion export { OnConsentExpiry }; //# sourceMappingURL=consentExpiry.d.mts.map