import type { Endpoint } from 'comlink';
import type { WebSocket as LibWebSocket } from 'ws';
export declare function webSocketEndpoint(options: {
    webSocket: WebSocket | LibWebSocket;
    messageChannel?: string;
}): Endpoint;
