export declare const weekDays: string[]; export declare const monthNames: string[]; export declare function removeTimeIfAvailable(date: Date): Date; export declare function removeTime(date: Date): Date; export declare function isSameDate(date1: Date, date2: Date): boolean; export declare function isBetweenDateRange(date: Date, range: [Date, Date]): boolean; export declare function isStartOfDateRange(date: Date, range: [Date, Date]): boolean; export declare function isEndOfDateRange(date: Date, range: [Date, Date]): boolean; export declare function getDayOfWeekOffset(date: Date): number[]; export declare function daysInMonth(date: Date): Date[];