export declare enum Environment { WEB = "WEB", NODEJS = "NODEJS" } export interface WebSocketUrlBuilder { setUrl(url: string): this; setPort(port: number): this; setDefaultPathname(pathname: string): this; build(): string; }