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