declare module "@extra-array/partition" { import type { testFn } from "./_types"; /** * Segregates values by test result. * @param x an array * @param ft test function (v, i, x) * @returns [satisfies, doesnt] */ declare function partition(x: Iterable, ft: testFn): [T[], T[]]; export = partition; //# sourceMappingURL=partition.d.ts.map}