export default arrayFilter;
/**
 * A specialized version of `filter` for arrays without support for
 * iteratee shorthands.
 *
 * @private
 * @param {Array} [array] The array to iterate over.
 * @param {Function} predicate The function invoked per iteration.
 * @returns {Array} Returns the new filtered array.
 */
declare function arrayFilter(array?: any[], predicate: Function): any[];
