declare module "@extra-array/reject-update" {
import type { testFn } from "./_types";
/**
 * Discards values which pass a test.
 * @param x an array (updated)
 * @param ft test function (v, i, x)
 * @returns x
 */
declare function reject$<T>(x: T[], ft: testFn<T>): T[];
export = reject$;
//# sourceMappingURL=reject$.d.ts.map}
