/** * Returns the first moment of the month for the given date. * * @example * startOfMonth("2024-01-25") // 2024-01-01 00:00:00 * * @param date The date to check. * @returns A new Date object set to the first day of the month at 00:00:00. */ export declare function startOfMonth(date: Date | string | number | null): Date;