import { type ProcessPort } from '../platform/process.js'; interface SpawnOptions { stdio: 'inherit'; shell?: boolean; env?: NodeJS.ProcessEnv; } interface SpawnArgs { command: string; args: string[]; options: SpawnOptions; } export declare function buildSpawnArgs(binaryPath: string, args: string[], _platform: string, extraEnv?: NodeJS.ProcessEnv | null): SpawnArgs; export declare function run(binaryPath: string, args: string[], extraEnv?: NodeJS.ProcessEnv | null, deps?: { process?: ProcessPort; }): never; export {};