/// <reference types="node" />
import childProcess from 'child_process';
declare const execSync: (cmd: string) => Promise<{
    result: boolean;
    err: childProcess.ExecException | null;
    stdout: any;
    stderr: any;
}>;
export { execSync };
