/** * WebSocket URL Utilities * Generates secure WebSocket URLs based on page protocol */ /** * Get a secure WebSocket URL for the Relay service. * Automatically uses wss:// when the page is loaded over HTTPS. * Ensures the URL includes the /ws path for the Relay WebSocket endpoint. * * @param providedUrl - Optional URL provided by the caller * @returns WebSocket URL (ws:// for development, wss:// for production) */ export declare const getSecureWsUrl: (providedUrl?: string) => string; //# sourceMappingURL=websocketUrl.d.ts.map