/** * Extracts and normalizes the date part (00:00:00) from a given input. * * @param date The date to extract from. * @returns A Date object with the time part set to 0. */ export declare function normalizeDate(date: Date | string | number | null): Date;