import { DateInput } from '../dates/types.cjs'; /** * Checks if a given date input is in the future. */ declare function isFuture(date: DateInput): boolean; export { isFuture };