import type { TypeOfIteratee } from '../types'; /** * 生成可应用于每个迭代器函数的回调,返回所需的结果,可以是`identity` || 迭代器函数 || 属性匹配器 || 属性访问器。 * * @example * _baseIteratee(null) * => identity * * _baseIteratee(func) * => optimizeCb * * _baseIteratee(Obj) * => matcher * * _baseIteratee(other) * => property * * @param value 给定值 * @param context 上下文对象,若传递,则作为迭代器函数的执行上下文 this * @param argCount 回调函数类型 */ export declare function _baseIteratee(value: I, context?: C, argCount?: A): TypeOfIteratee;