import { FC } from 'react'; import { CalendarBaseControlIconButtonProps } from '../../../CalendarBase'; export type CalendarNextButtonProps = CalendarBaseControlIconButtonProps; /** * `CalendarNextButton` is the calendar-scoped "next" navigation control * used to advance the visible month in the day-picker view. It wraps * `CalendarBaseNextButton` and integrates tightly with the calendar’s * navigation, range constraints, and picker-mode state. */ export declare const CalendarNextButton: FC;