/** * @param {string} path */ export function useWS(path: string): { opened: import("vue").Ref; ws: reconnectingWebSocketModule.default; subscribe: (channel: string, listener: (message: T) => void) => void; unsubscribe: (channel: string, listener: (message: any) => void) => void; } | undefined; export default useWS; import reconnectingWebSocketModule from 'reconnecting-websocket'; //# sourceMappingURL=ws.d.ts.map