import { type Socket } from "node:net"; export declare function connectUnixWebSocket(socketPath: string): Promise; export declare function writeWebSocketText(socket: Socket, payload: string): void; export declare function readWebSocketText(socket: Socket): Promise;