import { IWebSocketClient } from "../types/Back.js"; import { AdminUser } from "../types/Common.js"; export declare class WebSocketClient implements IWebSocketClient { id: string; clientId?: string; lastPing: number; topics: Set; adminUser: AdminUser; send: (message: string) => void; close: () => void; onMessage: (handler: (message: string) => void) => void; onClose: (handler: () => void) => void; constructor({ id, clientId, send, close, onMessage, onClose, adminUser }: { id: any; clientId: any; send: any; close: any; onMessage: any; onClose: any; adminUser: any; }); } //# sourceMappingURL=common.d.ts.map