import { FC } from 'react'; import { CalendarBasePickerButtonProps } from '../../../CalendarBase'; export type CalendarMonthPickerButtonProps = CalendarBasePickerButtonProps; /** * `CalendarMonthPickerButton` is the calendar-scoped trigger for toggling * the month-picker view. It wraps `CalendarBasePickerButton` and wires it * into the `Calendar` state machine via `useCalendarContext()`. */ export declare const CalendarMonthPickerButton: FC;