/**
 * 验证是否有效日期
 */
declare function isValidDate(v: string | number | Date): boolean;

export { isValidDate };
