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