/**
 * @summary Collects all items from an iterable or async iterable into an array.
 * @category Utils
 */
export declare function asyncCollect<V>(iterable: Iterable<V> | AsyncIterable<V>): Promise<V[]>;
//# sourceMappingURL=iterate.d.ts.map