import { AsyncWrappable, AsyncIterableIterator } from '../../types/async-iterable'; import { IterableIterator as SyncIterableIterator } from '../../types/iterable'; declare function asyncWindowBehind(opts: { readonly filler?: Filler; }, size: number, source: AsyncWrappable): AsyncIterableIterator>; declare function asyncWindowBehind(size: number, source: AsyncWrappable): AsyncIterableIterator>; declare function asyncWindowBehind(opts: { readonly filler: any; }, size: number): (source: AsyncWrappable) => AsyncIterableIterator>; declare function asyncWindowBehind(size: number): (source: AsyncWrappable) => AsyncIterableIterator>; export { asyncWindowBehind };