/** * Normalize a given value into a Date object. This function will accept a string, a Date * or a number and return Date representation of the value. * * @param value - The value to normalize. * @returns A normalized date object. */ declare function normalizeDate(value?: string | Date | number): Date; export default normalizeDate; export { }