import { Paging } from './common'; export type EventResponse = { object: 'event'; id: string; type: string; data: unknown; }; export type EventListResponse = { data: EventResponse[]; paging: Paging; }; export type EventListQuery = { type?: string; creation_date?: number; creation_date_from?: number; creation_date_to?: number; limit?: number; before?: string; after?: string; }; //# sourceMappingURL=events.d.ts.map