/**
 * 判断是否Number对象
 *
 * @param {object} obj 对象
 * @return {boolean}
 */
declare const isNumber: (obj: any) => boolean;
export default isNumber;
