import React from "react"; import { FirstDayOfWeek, UseMonthProps } from "@datepicker-react/hooks"; export type MonthProps = React.HTMLAttributes & { useMonthProps?: Partial; year: number; month: number; firstDayOfWeek: FirstDayOfWeek; }; export default function Month({ year, month, firstDayOfWeek, useMonthProps, ...props }: MonthProps): React.JSX.Element;