/** * Returns the number of minutes between two dates. * * This function takes two dates and calculates the number of minutes * between them. It returns the difference in minutes as an integer. * * @param {Date} date1 - The first date to compare. * @param {Date} date2 - The second date to compare. * @returns {number} - The number of minutes between the two dates. */ export declare function minutesBetween(date1: Date | string | number, date2: Date | string | number): number;