import { AriaLabelingProps, DOMProps } from '@react-types/shared'; import { CalendarAria } from './useCalendarBase'; import { CalendarProps, CalendarState, DateValue } from 'react-stately/useCalendarState'; export interface AriaCalendarProps extends CalendarProps, DOMProps, AriaLabelingProps { } /** * Provides the behavior and accessibility implementation for a calendar component. * A calendar displays one or more date grids and allows users to select a single date. */ export declare function useCalendar(props: AriaCalendarProps, state: CalendarState): CalendarAria;