declare namespace EventLayer {} declare class EventLayer { constructor(); identify(userId: string, userProperties?: T): void; track(eventName: string, eventProperties?: T): void; page(category: string, name: string, properties?: T): void; alias(userId: string, previousId?: string): void; group(groupId: string, traits?: T): void; fbTrack(eventName: string, eventProperties?: T): void; } export = EventLayer;