export declare type PromiseFn = (results: T[]) => Promise; export declare type PromiseFnArr = (results: T[]) => Promise; export declare const series: (functions: PromiseFn[]) => Promise; export declare const seriesArr: (functions: PromiseFnArr[]) => Promise;