export interface RunOptions { cwd?: string; env?: NodeJS.ProcessEnv; allowExitCodes?: readonly number[]; maxOutputBytes?: number; } export interface RunResult { stdout: string; stderr: string; exitCode: number; } export interface RunError extends Error, RunResult { } export declare function run(command: string, args: readonly string[], options?: RunOptions): Promise; //# sourceMappingURL=process.d.ts.map