export interface ConsentPermissions { adbepersonalizedpromotions?: boolean; adbepersonalizedrecommendations?: boolean; adobeUsageDataCollection: boolean; communitiesPromotions: boolean; communitiesRecommendations: boolean; druidUsageDataCollection: boolean; gainsightUsageDataCollection: boolean; globalDataCollectionAndUsage?: boolean; inProductPromotions: boolean; inProductRecommendations: boolean; pendoUsageDataCollection: boolean; } /** * Defines User Consent APIs. */ export interface ConsentApi { getPermissions: () => Promise; updatePermissions: (data: Partial) => void; } declare const userConsent: ConsentApi; export default userConsent;