/** * Returns a new Date object set to the start of the day (00:00:00) of the given date. * This is useful for comparing dates without considering the time component. * * @param d The date to get the start of the day for. * @returns A new Date object representing the start of the day. */ export declare function startOfDay(d: Date): Date;