/** * IPC transport for the simulator subprocess. * * Spawns simProcess.js as a child process and wraps its stdin/stdout * as a Transport, identical to createSerialTransport but over stdio pipes. */ import type { Transport } from './transport.js'; export interface SimTransportOptions { fsRoot: string; memLimit?: number; fsLimit?: number; fsReadMax?: number; /** Path to project directory for sim/ stubs */ simDir?: string; } export declare function createSimTransport(options: SimTransportOptions): Transport; //# sourceMappingURL=simTransport.d.ts.map