import { IterableX } from '../../iterable/iterablex'; /** * @ignore */ export declare function partitionProto(this: IterableX, predicate: (value: T, index: number) => value is S, thisArg?: any): IterableX[]; export declare function partitionProto(this: IterableX, predicate: (value: T, index: number) => boolean, thisArg?: any): IterableX[]; declare module '../../iterable/iterablex' { interface IterableX { partition: typeof partitionProto; } }