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