/** 检测数据类型
 * @function getObjType
 * @param obj 要检验的数据
 * @return {String} 返回对应的数据类型
 */
declare const getObjType: (obj: any) => string;
export default getObjType;
