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