import type { CalendarViewType } from '../types/shared-types.js'; /** * @internal */ export interface CalendarHeaderProps { /** The view currently shown to provide the proper text content. */ view: CalendarViewType; /** Calendar header label id used for the 'aria-labelledby' attribute. */ labelId: string; } /** * CalendarHeader component * Renders the calendar header, including the buttons to navigate to the previous/next * month/year/list of years and the button (label) to switch the calendar view */ export declare const CalendarHeader: (props: CalendarHeaderProps & import("react").RefAttributes) => React.ReactElement | null;