/// import * as child_process from 'child_process'; export interface ShellOptions extends child_process.SpawnOptions { quiet?: boolean; } /** * OS helpers * * Shell function which both prints to stdout and collects the output into a * string. */ export declare function shell(command: string[], options?: ShellOptions): Promise;