declare global { interface Window { instrumentationKey: string; } } export interface AppDescription { name: string; version: string; } export declare function initialize(app: AppDescription): void; export declare function trackEvent(name: string, properties: { [key: string]: string; }): void;