import * as i0 from "@angular/core"; /** * Service to handle Google Analytics integration. * * @remarks * This service is designed to work with Angular applications and ensures that * the Google Analytics script is only loaded in the browser environment. * * @example * ```typescript * constructor(private googleAnalyticsService: GoogleAnalyticsService) { * this.googleAnalyticsService.loadScript('YOUR_GOOGLE_TAG_MANAGER_ID'); * } * ``` * * @public */ export declare class GoogleAnalyticsService { private platformId; constructor(platformId: any); /** * Loads the Google Analytics script dynamically. * @param googleTagManagerId - The Google Tag Manager ID to be used for loading the script. **/ loadScript(googleTagManagerId: string): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }