/** * Returns a new Date object set to the end of the day (23:59:59.999) of the given date. * * @param date The date to get the end of the day for. * @returns A new Date object representing the end of the day. */ export declare function endOfDay(date?: Date | string | number): Date;