import { AsyncWrappable, AsyncIterableIterator } from '../../types/async-iterable'; declare function asyncDistinct(source: AsyncWrappable): AsyncIterableIterator; declare function asyncDistinct(selector: (item: T) => unknown): (source: AsyncWrappable) => AsyncIterableIterator; declare function asyncDistinct(selector: (item: T) => unknown, source: AsyncWrappable): AsyncIterableIterator; export { asyncDistinct };