import { IterableX } from './iterablex'; export declare function partition(source: Iterable, predicate: (value: T, index: number) => value is S, thisArg?: any): IterableX[]; export declare function partition(source: Iterable, predicate: (value: T, index: number) => boolean, thisArg?: any): IterableX[];