interface BrowserLocationLike { protocol?: string; hostname?: string; port?: string; } interface BrowserRuntimeLike { port: string; host?: string; } export declare function resolveBrowserWebSocketUrl(runtime: BrowserRuntimeLike, location?: BrowserLocationLike | undefined): string; export {};