import { type ChildProcessByStdio } from 'node:child_process'; import type { Readable } from 'node:stream'; export type SpawnedCommand = ChildProcessByStdio; export declare function spawnCommand(command: string, args: readonly string[], options: { cwd: string; env?: NodeJS.ProcessEnv; }): SpawnedCommand; //# sourceMappingURL=spawn-command.d.ts.map