import { AsyncWrappable, AsyncIterableIterator } from '../../types/async-iterable'; import { IterableIterator as SyncIterableIterator } from '../../types/iterable'; declare function asyncWindow(size: number, source: AsyncWrappable): AsyncIterableIterator>; declare function asyncWindow(size: number): (source: AsyncWrappable) => AsyncIterableIterator>; export { asyncWindow };