import { DateInput, DatePrecision } from './types.cjs'; /** * Normalizes a date input of either string, number, or Date and returns a respective Date object. * * The precision parameter allows for the date to be normalized to the nearest hour, minute, second, or millisecond. */ declare function normalizeDate(date: DateInput, precision?: DatePrecision): Date; export { normalizeDate };