import { ClientUserDto } from './client-user.dto'; export declare enum WsClientEventType { CONNECTED = "connected", DISCONNECTED = "disconnected", LOST = "lost" } export declare class WsClientDto { socketId: string; ipAddress?: string | null; user?: ClientUserDto | null; eventType: WsClientEventType; timestamp?: string; }