import { DateInput } from './types.js'; /** * is the date in the future compared to the current time * @param inputDate - The date that should be in the future * @returns the given date is in the future compared to the current time */ declare function isFuture(inputDate: DateInput): boolean; export { isFuture };