import type { NewRelicFeatureEvent } from './newRelic'; export type AppEnvironment = 'development' | 'sandbox' | 'beta' | 'production'; export type WindowGlobalConfig = { MW_BASE_URL?: string; HOST_APP_NAME?: string; }; export type NewRelicTrackingEvents = { trackFeatureEvent: (event: NewRelicFeatureEvent) => void; }; declare global { interface Window { __TAPOS_NEWRELIC_TRACKING_EVENTS__?: NewRelicTrackingEvents; } }