import { DateInput, MaybeDateInput } from './types.js'; import { DiffRoundingMethod } from './diffRound.js'; /** * Returns the difference between 2 dates in minutes. * @param dateA - A date to compare with the right date * @param [dateB] - A Date to compare with the left date or nothing to compare with the current time * @param [roundingMethod] the rounding method to use, default: trunc */ declare function diffMinutes(dateA: DateInput, dateB?: MaybeDateInput, roundingMethod?: DiffRoundingMethod): number; /** * Returns the difference between 2 dates in minutes. * @param [dateA] - A date to compare with the right date or null to compare with the current time * @param dateB - A Date to compare with the left date * @param [roundingMethod] the rounding method to use, default: trunc */ declare function diffMinutes(dateA: DateInput, dateB: DateInput, roundingMethod?: DiffRoundingMethod): number; export { diffMinutes };