import { Loggable } from '../../Loggable'; import * as i0 from "@angular/core"; export declare type GoogleAnalyticsEvent = string | number; export interface IGoogleAnalytics { push(...events: GoogleAnalyticsEvent[]): any; } export declare class GoogleAnalyticsService extends Loggable { name: string; /** * Construct a new GoogleAnalyticsService */ constructor(); /** * Proxy for the ga asynchronous event api; when developing, logs events to console. * @example * this.googleAnalyticsService.push(['_trackPageview']); */ push(...events: GoogleAnalyticsEvent[]): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }