import { SeriesNextCallback, SeriesFunction } from "../interfaces"; /** * This method executes a series of functions one by one in order, or break * if an error occured. Finally, the final callback will be call, with the * ending reason if exists. */ export declare function series(fns: SeriesFunction[], final?: SeriesNextCallback): void;