import { BaseResource } from './BaseResource.js'; import type { RequestOptions, TagadaList } from '../types/common.js'; import type { AppEvent, EventListParams, EventStatisticsParams, EventStatistics } from '../types/events.js'; export declare class Events extends BaseResource { /** * List application events with filtering by type, store, date, etc. */ list(params?: EventListParams, opts?: RequestOptions): Promise>; /** * Retrieve a single event by ID. */ retrieve(eventId: string, opts?: RequestOptions): Promise; /** * Get event statistics for the account (totals, by type, processed/unprocessed). */ statistics(params?: EventStatisticsParams, opts?: RequestOptions): Promise; /** * Get recent events, optionally limited. */ recent(limit?: number, opts?: RequestOptions): Promise; } //# sourceMappingURL=Events.d.ts.map