/// import { spawn } from 'child_process'; import { Stdio } from '../types'; export declare function execute(cmd: string, args: Array, io: Stdio, cwd: string, _spawn?: typeof spawn): Promise<{ stdout: string; stderr: string; }>;