import { Request } from '../Request'; import type { IEventRequest } from './types'; export declare class EventRequest extends Request { protected itemId?: string; protected timestamp: number; protected eventType: string; protected eventValue?: string; protected from?: string; protected url?: string; protected ref?: string; protected recommendationId?: string; protected userProperties?: Record; protected eventProperties?: Record; constructor({ itemId, timestamp, eventType, eventValue, from, url, ref, recommendationId, userProperties, eventProperties, }: IEventRequest); getTimestamp(): number; getPayload(): object; } //# sourceMappingURL=EventRequest.d.ts.map