import { DateInput, MaybeDateInput } from './types.js'; /** * Checks if two date objects refer to the same time minutes. Ignores date. * @param inputDateA - First date to compare * @param [inputDateB] - Second date to compare or the current time if nothing given */ declare function sameMonth(inputDateA: DateInput, inputDateB?: MaybeDateInput): boolean; /** * Checks if two date objects refer to the same time minutes. Ignores date. * @param [inputDateA] - First date to compare or the current time if null given * @param inputDateB - Second date to compare */ declare function sameMonth(inputDateA: MaybeDateInput, inputDateB: DateInput): boolean; export { sameMonth };