import { As, Options, Props } from "ariakit-utils/types"; import { CalendarState } from "./calendar-state"; export declare const useCalendar: import("ariakit-utils/types").Hook>; export declare const Calendar: import("ariakit-utils/types").Component>; export declare type CalendarOptions = Options & { /** * Object returned by the `useCalendarState` hook. */ state: CalendarState; }; export declare type CalendarProps = Props>;