import childProcess from 'child_process'; import { CommandRunner, Logger } from '@stackbit/types'; type RunCommandOptions = { cwd?: string; shell?: boolean; env?: NodeJS.ProcessEnv; logger?: Logger; uid?: number; }; export declare function runCommand(command: string, args?: string[], options?: RunCommandOptions): childProcess.ChildProcessWithoutNullStreams; export declare function getCommandRunner(commandRunnerOptions: { env: NodeJS.ProcessEnv; uid?: number; }): CommandRunner; export {}; //# sourceMappingURL=run.d.ts.map