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