interface EventRow { id: string; eventName: string; clientId: string; pagePath?: string; eventTimestamp: string; status: string; } interface Props { events: EventRow[]; maxRows?: number; } declare const EventsTable: import("svelte").Component; type EventsTable = ReturnType; export default EventsTable; //# sourceMappingURL=EventsTable.svelte.d.ts.map