import { AsyncWrappable, AsyncIterableIterator } from '../../types/async-iterable'; declare function asyncSplitOn(same: (a: any, b: any) => boolean, separatorValue: any): (source: AsyncWrappable) => AsyncIterableIterator>; declare function asyncSplitOn(same: (a: any, b: any) => boolean, separatorValue: any, source: AsyncWrappable): AsyncIterableIterator>; declare function asyncSplitOn(separatorValue: any, source: AsyncWrappable): AsyncIterableIterator>; export { asyncSplitOn };