/** * Get the total days in a month * * @param month - The month number (0-11) * * @param year - The year number * * @returns The total days in the month */ export declare function getTotalDaysInMonth(month: number, year: number): number; /** * Check if two dates are the same * * @param dateA - The first date * * @param dateB - The second date * * @returns true if the dates are the same, false otherwise */ export declare function checkIsSameDate(dateA: Date, dateB: Date): boolean;