import { BaseExecutor } from './__interfaces__'; import { Action } from '../types'; export declare class ParallelExecutor implements BaseExecutor { private _initialValue; private _actions; constructor(initialValue: T); stream(act1: Action, act2?: Action, act3?: Action, act4?: Action, act5?: Action, act6?: Action, act7?: Action, act8?: Action, act9?: Action, act10?: Action): this; execute(onError?: (error: any) => any): void; }