/** * Creates an array of elements split into two groups, the first of which * contains elements predicate returns truthy for, the second of which contains * elements predicate returns falsey for. * * @param array the source array * @param function predicate */ export declare function partition(array: ReadonlyArray, predicate: (item: T) => boolean): [T[], T[]]; //# sourceMappingURL=index.d.ts.map