/**
 * Array reject
 */
declare function reject(arr: any, callback: any, thisObj?: any): any[];
export default reject;
