import { EventType } from "../enums/eventType"; export abstract class EventService { collect: (eventType: EventType, cipherId?: string, uploadImmediately?: boolean) => Promise; uploadEvents: (userId?: string) => Promise; clearEvents: (userId?: string) => Promise; }