import { DateValue } from '@internationalized/date'; import { ReactElement } from 'react'; import { UseCalendarProps } from './use-calendar.js'; import '@heroui/theme'; import 'tailwind-variants'; import '@heroui/system'; import '@react-types/calendar'; import '@react-stately/calendar'; import './use-calendar-base.js'; import '@react-types/shared'; import '@heroui/system/src/types'; import '@react-aria/calendar'; import '@react-types/button'; import '@heroui/button'; import '@heroui/react-utils'; import './calendar-base.js'; import 'react/jsx-runtime'; interface Props extends Omit, "isHeaderWrapperExpanded"> { } type CalendarProps = Props; declare const Calendar: (props: CalendarProps) => ReactElement; export { type CalendarProps, Calendar as default };