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