import { SimpleFunction, ParallelCallback } from "../interfaces"; /** * This method starts functions in a series at once, but at most N functions, * should be executing in the same moment. And then executes the rest in * series in sequence. */ export declare function concurrent(currency: number, fns: SimpleFunction[], final?: ParallelCallback): void;