import type { ObjArrStr } from '@/type.d'; /** * 检查是否存在值 * @param {(String|Array|Object)} haystack 查找范围 * @param {*} needle 要查找的值 * @returns {Boolean} */ export declare function has(haystack: ObjArrStr, needle: any): boolean;