import type { AnyAwaitableIterable } from './types/inputs/MinimalIterator.js'; import type { SimpleAsyncIterator } from './types/outputs/SimpleIterator.js'; /** * Wraps an awaitable iterable into an async iterator * * @since 2.5.0 */ export declare function asyncIterator$(base: AnyAwaitableIterable): SimpleAsyncIterator;