import { HTMLAttributes } from 'react';
import { CalendarState } from './types';
export interface UseCalendarProps {
readOnly?: boolean;
disabled?: boolean;
}
export interface UseCalendarResult {
gridProps: HTMLAttributes;
}
export declare function useCalendar(props: UseCalendarProps, state: CalendarState): UseCalendarResult;