/** * Vue composable for managing WebSocket connections to Rocket.Chat. * Implements the DDP (Distributed Data Protocol) used by Rocket.Chat. * Provides automatic reconnection, authentication, and room subscriptions. * * @param {Object} config - Configuration options * @returns {Object} Composable API */ export function useChatWebSocket(config?: any): any; export namespace ConnectionState { let DISCONNECTED: string; let CONNECTING: string; let CONNECTED: string; let AUTHENTICATING: string; let READY: string; let RECONNECTING: string; let ERROR: string; } export default useChatWebSocket; //# sourceMappingURL=useChatWebSocket.d.ts.map