import { As, Options, Props } from "ariakit-utils/types"; import { CalendarState } from "./calendar-state"; import { RangeCalendarState } from "./range-calendar-state"; export declare const useCalendarNextButton: import("ariakit-utils").Hook>; export declare const CalendarNextButton: import("ariakit-utils").Component>; export declare type CalendarNextButtonOptions = Options & { /** * Object returned by the `useCalendarNextButtonState` hook. */ state: CalendarState | RangeCalendarState; }; export declare type CalendarNextButtonProps = Props>;