export interface GAOptions { configParams?: Record; sendPageView?: boolean; debug?: boolean; } export declare function initGoogleAnalytics(trackingId: string, options?: GAOptions): Promise; export declare function updateGAConsent(status: 'granted' | 'denied'): Promise; export declare function trackGAEvent(eventName: string, params?: Record): void; export declare function trackGAPageView(url?: string, title?: string): void; export declare function isGALoaded(): boolean; //# sourceMappingURL=googleAnalytics.d.ts.map