/**
* Simple `Array.fromAsync` implementation.
* @param iterable Iterable to transform into an array.
* @returns Promise containing an array with all the elements in the iterable.
*/exportdeclarefunction arrayFromAsync<T>(iterable: Iterable<T> | AsyncIterable<T>): Promise<T[]>;