/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { CalendarProps } from './Calendar'; export type CalendarHeaderProps = { /** Navigates to the next month. */ readonly goToNextMonth: () => void; /** Navigates to the next year. */ readonly goToNextYear: () => void; /** Navigates to the previous month. */ readonly goToPreviousMonth: () => void; /** Navigates to the previous year. */ readonly goToPreviousYear: () => void; /** The currently displayed month. */ readonly month: Date; } & Pick; /** * The navigation controls of a Calendar, showing the current month and year. * * @see {@link https://designsystem.amsterdam/?path=/docs/components-navigation-calendar--docs Calendar docs at Amsterdam Design System} */ export declare const CalendarHeader: { ({ goToNextMonth, goToNextYear, goToPreviousMonth, goToPreviousYear, locale, month, nextMonthButtonIcon, nextMonthButtonLabel, nextYearButtonIcon, nextYearButtonLabel, previousMonthButtonIcon, previousMonthButtonLabel, previousYearButtonIcon, previousYearButtonLabel, }: CalendarHeaderProps): import("react").JSX.Element; displayName: string; };