/**
 * Convert an async iterator or async iterable into an array.
 *
 * @category Array
 * @category Package : @augment-vir/common
 */
export declare function fromAsyncIterable<T>(asyncInput: AsyncIterable<T> | AsyncIterator<T>): Promise<T[]>;
