/** * Utility function to check if a date is in the past * @param date - The date to check * @returns True if the date is before today, false otherwise */ export declare function isPastDate(date: Date): boolean;