import { Command, ExecuteCommandOptions } from './executeCommand'; /** * Executes JS functions or shell commands concurrently and rejects as soon * as one command or function fails. * Supports asynchronous functions. * @param commands The shell commands or JavaScript functions to * execute concurrently */ export declare function executeCommandsConcurrently(commands: Command[], { concurrency, ...restOptions }?: ExecuteCommandOptions & { concurrency?: number; }): Promise;