import { AriaButtonProps } from 'react-aria/useButton'; import { CalendarPropsBase, CalendarState } from 'react-stately/useCalendarState'; import { DOMProps, RefObject, StyleProps } from '@react-types/shared'; import { RangeCalendarState } from 'react-stately/useRangeCalendarState'; import { HTMLAttributes, JSX } from 'react'; interface CalendarBaseProps extends CalendarPropsBase, DOMProps, StyleProps { state: T; visibleMonths?: number; calendarProps: HTMLAttributes; nextButtonProps: AriaButtonProps; prevButtonProps: AriaButtonProps; errorMessageProps: HTMLAttributes; calendarRef: RefObject; } export declare function CalendarBase(props: CalendarBaseProps): JSX.Element; export {};