///
///
import { ExecException } from "child_process";
export declare function run(): Promise;
export declare function execShellCommand(cmd: string, env: NodeJS.ProcessEnv): Promise<{
cmd: string;
error: ExecException | null;
stdout: string;
stderr: string;
}>;