import { type IEventsResponse } from '../../types/index.js'; export declare class Event { eventId: string; notificationId: string | null; eventType: string; occurredAt: string; data: object; constructor(eventData: IEventsResponse); }