import type { ArrayPredicate } from '../types.js'; /** * Split an array into two arrays based on a predicate. * First array contains items that pass the predicate, second contains items that fail. * * @param arr - Input array * @param predicate - Function that returns true/false for each item * @returns Tuple of [passing, failing] arrays */ export declare function partitionHot(arr: readonly T[], predicate: ArrayPredicate): [T[], T[]]; //# sourceMappingURL=partition.d.ts.map