type ConsentListener = (granted: boolean) => void; export declare const AnalyticsConsent: { set: (value: boolean) => void; has: () => boolean; subscribe: (listener: ConsentListener) => (() => void); }; export {};