/**
 * Creates a `find` or `findLast` function.
 *
 * @private
 * @param {Function} findIndexFunc The function to find the collection index.
 * @returns {Function} Returns the new find function.
 */
declare function createFind(findIndexFunc: any): (collection: any, predicate?: any, fromIndex?: any) => any;
export default createFind;
