/** * Capture the output of a command * @note this ignores the running errors */ export declare function execCapture(command: string): Promise; export declare function runProgram(program: string, args: string[], cwd?: string, silent?: boolean): Promise;