/** * 判断对象是否为集合: * Array,Set,Map,{} * */ declare function isCollection(value: any): boolean; export { isCollection };