import { UseMonthProps } from "@datepicker-react/hooks"; import React from "react"; export type CalendarProps = React.HTMLAttributes & { useMonthProps?: Partial; }; export default function Calendar({ useMonthProps, ...props }: CalendarProps): React.JSX.Element;