import { FC } from 'react'; import { CalendarBaseControlIconButtonProps } from '../../../CalendarBase'; export type CalendarNextYearGroupButtonProps = CalendarBaseControlIconButtonProps; /** * `CalendarNextYearGroupButton` is a control button used within the Calendar * to navigate to the next group of years. * * The button is context-aware and is only interactive when the calendar * is in `year` picker mode. In other picker modes, the button is disabled * and marked as not visible via the `data-visible` attribute. * * This component composes `CalendarBaseControlIconButton` and safely merges * an optional external `onClick` handler with the internal calendar action * responsible for switching to the next year group. */ export declare const CalendarNextYearGroupButton: FC;