import { Wrappable, IterableIterator } from '../../types/iterable'; declare function splitOnSeq(same: (a: any, b: any) => boolean, separatorSeq: Wrappable): (source: Wrappable) => IterableIterator>; declare function splitOnSeq(same: (a: any, b: any) => boolean, separatorSeq: Wrappable, source: Wrappable): IterableIterator>; declare function splitOnSeq(separatorSeq: Wrappable, source: Wrappable): IterableIterator>; export { splitOnSeq };