/** * Given an AsyncIterable that could potentially yield other async iterators, * flatten all yielded results into a single AsyncIterable */ export declare function flattenAsyncIterable( iterable: AsyncIterable>, ): AsyncGenerator;