import * as net from "node:net"; import type { IpcRequest, IpcResponse } from "./types.js"; export declare function startServer(): net.Server; export declare function routeCommand(req: IpcRequest): Promise; export declare function sendCommand(req: IpcRequest, timeoutMs?: number): Promise; export declare function cleanupSocket(): void;