import { DateInput, MaybeDateInput } from './types.js'; /** * @name isAfter * @category Common Helpers * @summary Is the first date after the second one or the current time? * * @description * Is the first date after the second one or the current time? * * @param inputDate - The date that should be after the other one to return true * @param [dateToCompare] - The date to compare with or the current time if nothing given * * @returns The first date is after the second date or the current time. */ declare function isAfter(inputDate: DateInput, dateToCompare?: MaybeDateInput): boolean; export { isAfter };