import { Options } from "execa"; /** * Execute an array of commands serially. And catches their output in a logger. * * @param commands The commands that will be run one after another. * @param options [Options for execa](https://github.com/sindresorhus/execa#options). * @param logger Defaults to using console.log, but can be exchanged to suit advanced logging needs. */ export declare const executeCommandsSerially: (commands: string[], options?: Options | undefined, logger?: (msg: string) => void) => Promise;