/**
 * 判断是否为Null
 *
 * @param {object} obj 对象
 * @return {boolean}
 */
declare function isNull(obj: any): boolean;
export default isNull;
