import { Awaitable } from '../Types'; import { IAsyncEnumerator } from './_types'; export default class AsyncEnumerator implements IAsyncEnumerator { #private; constructor(array: Awaitable[]); get current(): T; moveNextAsync(): Promise; }