/** * Run tasks sequentially, resolving the resulting promises and accumulating the result in an array * @param tasks Tasks to be executed * @returns array of resolved values */ declare const promiseChain: (tasks: (() => Promise)[]) => Promise; export default promiseChain;