import type { ExIds } from '../ExIds.ts'; import type { UserEventSystem } from './UserEventSystem.ts'; /** Represents a single user tracking event to be sent to the pixel API. */ export interface UserEvent { cid: string; create_time?: number; email?: string; email_hash?: string; event?: string; event_id?: string; exids?: ExIds; fields?: Record; host?: string; pathname?: string; pixel?: string; receive_time?: number; referrer?: { local: string; session: string; }; rid?: string; system?: UserEventSystem; uid?: string; utm?: Record[] | Record; } //# sourceMappingURL=UserEvent.d.ts.map