import * as net from "node:net"; import { ByteStream } from "./stream"; export type SimRuntime = { socketPath: string; pid: number; }; export declare function findSimulatorSockets(): Promise; export declare function connectSimulator(socketPath: string): Promise<{ socket: net.Socket; stream: ByteStream; }>;