import type { WebSocket as WSWebSocket } from 'ws';
export declare function makeWebSocket(url: string): WebSocket;
/**
 * Adds the "sendPromise" fn to the given WebSocket instance,
 * if not already present.
 */
export declare function promisifySend(ws: WSWebSocket): WSWebSocket;
