import { InjectionToken } from '@angular/core'; import { DataLayer } from '../types/data-layer.type'; import { GaWindow } from './ngx-google-analytics-window'; /** * Check if there is some global function called gtag on Window object, or create an empty function that doesn't break code... */ export declare function getDataLayerFn(window: GaWindow): DataLayer; /** * Provides an injection token to access Google Analytics DataLayer Collection */ export declare const NGX_DATA_LAYER: InjectionToken;