import WebSocketConnection from '../communication/ws'; export default abstract class BaseReporter { static token: string; static ws: WebSocketConnection; private privacyEngine; abstract getKey(): string; constructor(); private initPrivacyEngine; sendData(report: any): void; set(ws: WebSocketConnection, token: string): void; }