import { type ChildProcessWithoutNullStreams } from 'node:child_process'; import type { ServerConfig } from '../types.js'; export declare function safeSpawn(cfg: ServerConfig, cwd: string): ChildProcessWithoutNullStreams; declare function shouldUseShell(command: string, platform: NodeJS.Platform): boolean; declare function serverArgs(args: string[] | undefined): string[]; /** Direct-module test seam; not re-exported by the package barrel. */ export declare const safeSpawnCoverage: { serverArgs: typeof serverArgs; shouldUseShell: typeof shouldUseShell; }; export {}; //# sourceMappingURL=safe-spawn.d.ts.map