/// <reference types="node" />
import childProcess from 'child_process';
export declare function exec(cmd: string, options: childProcess.ExecOptions & {
    cwd: string;
}): Promise<{
    stdout: string;
    stderr: string;
}>;
