import type { Features } from "@kiwicom/darwin"; import type { EventPayload } from "./Event"; export declare type Globals = { project?: string; /** * @deprecated * 'userId' renamed to 'visitorId' */ userId?: string; visitorId?: string; accountId?: string; email?: string; module?: string; pageName?: string; platform?: string; source?: string; langId?: string; sessionId?: string; deeplinkId?: string; pageViewId?: string; ip?: string; isStaging?: boolean; affilId: string; affilParams?: Record; brandingId: string; timestamp?: string; url?: string; domain?: string; bid?: number; splitster?: Record; features?: Features; abTests?: Record; UTMs: Record; exponeaCookie?: string; bookingSessionId?: string; screenWidth?: number; screenHeight?: number; viewportWidth?: number; viewportHeight?: number; isLoggedIn?: boolean; browserPrivacyMode?: string; connectionType?: string; connectionSpeed?: number; connectionSpeedMax?: number; device?: string; browser?: string; browserVersion?: string; os?: string; osVersion?: string; browserLang?: string; userIPCountryCode?: string; phraseApp?: string; isProduction?: boolean; isPreproduction?: boolean; isDevelopment?: boolean; }; export declare type Loglady = { events: EventPayload[]; global: Globals; };