/// <reference types="gtag.js" />
import ControlParams = Gtag.ControlParams;
import EventParams = Gtag.EventParams;
import ConfigParams = Gtag.ConfigParams;
import CustomParams = Gtag.CustomParams;
declare global {
    interface Window {
        dataLayer: any[];
    }
}
export default class GtagGA {
    static initializeGtag(trackingId: string, config?: ControlParams | EventParams | ConfigParams | CustomParams): void;
    static gtag(...args: any[]): void;
}
export { GtagGA };
export declare const initializeGtag: typeof GtagGA.initializeGtag, gtag: typeof GtagGA.gtag;
