import type { Validator } from "./types"; /** * 判断第一个日期是否小于第二个日期 * @param date * @param targetDate */ export declare const isLessThan: Validator; /** * 判断第一个日期是否等于第二个日期 * @param date * @param targetDate */ export declare const isEqual: Validator;