import { ButtonProps } from '../Button'; export type CalendarMonthButtonProps = ButtonProps & { /** * The current selection state of the calendar. */ calendarSelectionState: "day" | "month" | "year"; }; /** * A button that displays the current month and allows the user to select a different month. * * @param props.calendarSelectionState - The current selection state of the calendar. * @param props.onClick - The function to call when the button is clicked. * @param props - The rest of the props for the Button component. * @returns A button that displays the current month and allows the user to select a different month. */ export declare const CalendarMonthButton: import('react').ForwardRefExoticComponent>;