import type { Globals } from "../../records/Loglady"; declare type Static = { brandingId: string; UTMs: Record; affilParams: Record; langId?: string; project?: string; module?: string; pageName?: string; deeplinkId?: string; pageViewId?: string; domain?: string; ip?: string; isStaging?: boolean; bid?: number; splitster?: Record; }; declare const globals: (statics: Static) => Globals; export default globals;