import { As, Options, Props } from "ariakit-utils/types"; import { CalendarCellState } from "./calendar-cell-state"; export declare const useCalendarCell: import("ariakit-utils/types").Hook>; export declare const CalendarCell: import("ariakit-utils/types").Component>; export declare type CalendarCellOptions = Options & { /** * Object returned by the `useCalendarCellState` hook. */ state: CalendarCellState; }; export declare type CalendarCellProps = Props>;