/**
 * 判断是否有效的Date对象
 *
 * @param {any} val 对象
 * @return {boolean}
 */
declare function isValidDate(val: any): boolean;
export default isValidDate;
