declare global { interface Array { /** * Returns the elements of an array that don't meet the condition. * @param predicate A function that accepts up to three arguments. The reject method calls the predicate function one time for each element in the array. * @param thisArg An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value. */ reject( predicate: (value: T, index: number, array: T[]) => boolean, thisArg?: any, ): T[]; } } export {}; //# sourceMappingURL=reject.d.ts.map