import type { DebugCallback, ProcessWithPipeMessageTransport, ProcessWithWebSocketUrl, SpawnOptions, Stdio } from "../types"; declare function spawn(executable: string, args: string[], options: Stdio | Partial | undefined, transport: "websocket", debugCallback?: DebugCallback): ProcessWithWebSocketUrl; declare function spawn(executable: string, args: string[], options?: Stdio | Partial, transport?: "pipe", debugCallback?: DebugCallback): ProcessWithPipeMessageTransport; export default spawn; //# sourceMappingURL=spawn.d.ts.map