import type { Series, SyncSeries } from './types.js'; export declare function accumulateSync(input: SyncSeries): T[]; export declare function accumulateAsync(input: Series): Promise>>; /** Accumulates a series into an array. */ export declare namespace accumulate { const sync: typeof accumulateSync; const async: typeof accumulateAsync; } export declare const executeSync: typeof accumulateSync; export declare const executeAsync: typeof accumulateAsync; /** Executes all reserved processes. Alias of {@link accumulate}. */ export declare const executeAll: typeof accumulate; export declare const toArraySync: typeof accumulateSync; export declare const toArrayAsync: typeof accumulateAsync; /** Creates an array from an series. Alias of {@link accumulate}. */ export declare const toArray: typeof accumulate; /** Awaits all promises in a series. Alias of {@link accumulate.async} */ export declare const awaitAll: typeof accumulateAsync; //# sourceMappingURL=accumulate.d.ts.map