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<T extends DateValue> extends Omit<UseCalendarProps<T>, "isHeaderWrapperExpanded"> {
}
type CalendarProps<T extends DateValue = DateValue> = Props<T>;
declare const Calendar: <T extends DateValue>(props: CalendarProps<T>) => ReactElement;

export { type CalendarProps, Calendar as default };
