import { InjectionToken } from '@angular/core'; import { DataLayer } from '../types/data-layer.type'; import { GtagFn } from '../types/gtag.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 getGtagFn(window: GaWindow, dataLayer: DataLayer): GtagFn | null; /** * Provides an injection token to access Google Analytics Gtag Function */ export declare const NGX_GTAG_FN: InjectionToken;