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