/** * 判断值是否是一个原始值类型 * @param {*} value * @returns */ declare function isPrimitive(value: any): boolean; export { isPrimitive };