export default baseIteratee;
/**
 * The base implementation of `iteratee`.
 *
 * @private
 * @param {*} [value=identity] The value to convert to an iteratee.
 * @returns {Function} Returns the iteratee.
 */
declare function baseIteratee(value?: any): Function;
