interface IReportParams { id: string; params?: { [key: string]: string | undefined; }; } export declare function reportEvent({ id, params }: IReportParams): void; export declare function createGTMEventListener(): (eventName: string, eventData: any) => void; export {};