import { Event, Identity, Group } from "hyinsit-types"; import { EventProcessor } from "./types"; export default class LoggingProcessor implements EventProcessor { processEvent(event: Event, identity: Identity, properties: any, timestamp?: string): Promise; identify(identity: Identity, timestamp?: string | number): Promise; identifyGroup(group: Group, timestamp?: string | number): Promise; shutdown(): void; }