import { ExecOptions, ExecOutputReturnValue } from 'shelljs'; export declare function exec(command: string, options?: ExecOptions): Promise; export declare function throwIfFailed(output: ExecOutputReturnValue, message: string | ((output: ExecOutputReturnValue) => string)): ExecOutputReturnValue;