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