import { FunctionA1 } from'../types';
/**
* Process a sequence of promises synchronously and return a promise that resolves to
* an array of results.
*
* @param {Promise[]} ps
*/exportdefaultfunction sequence<A>(ps: FunctionA1<void, Promise<A>>[]): Promise<A[] | Error>;