import { SimpleFunction, ParallelCallback } from "../interfaces"; /** * This method executes a series of functions at once, and wait for the results * thereof. */ export declare function parallel(fns: SimpleFunction[], final?: ParallelCallback): void;