import { ArrPred } from '../typings/types'; interface Reject { (fn: ArrPred, arr: ArrayLike): T[]; (fn: ArrPred): (arr: ArrayLike) => T[]; } /** * Takes a predicate and a "arr", and returns a new array of the * same type containing the members of the given arr which do not satisfy the * given predicate. * * @param {Function} fn - predicate * @param {Array} arr * @return {Array} * @example * * var isEven = n => n % 2 === 0; * * reject(isEven, [1, 2, 3, 4]); //=> [1, 3] */ declare const _default: Reject; export default _default;