import { As, Options, Props } from "ariakit-utils/types"; import { CalendarGridState } from "./calendar-grid-state"; export declare const useCalendarGrid: import("ariakit-utils/types").Hook>; export declare const CalendarGrid: import("ariakit-utils/types").Component>; export declare type CalendarGridOptions = Options & { /** * Object returned by the `useCalendarGridState` hook. */ state: CalendarGridState; }; export declare type CalendarGridProps = Props>;