import * as WS from "ws";
import { Event } from "ws";
export declare const defaultTimeoutInMs = 50000;
export declare function open(url: string, timeoutMs?: number): Promise<{
    ws: WS;
    openEvent: Event;
}>;
