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