/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { DatePickerProps } from './DatePicker'; export type DatePickerHeaderProps = { /** The `id` connecting the month caption to the grid’s accessible name. */ readonly captionId: string; /** Disables the button that navigates to the next month. */ readonly disableNextMonth?: boolean; /** Disables the button that navigates to the next year. */ readonly disableNextYear?: boolean; /** Disables the button that navigates to the previous month. */ readonly disablePreviousMonth?: boolean; /** Disables the button that navigates to the previous year. */ readonly disablePreviousYear?: boolean; /** 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; export declare const DatePickerHeader: { ({ captionId, disableNextMonth, disableNextYear, disablePreviousMonth, disablePreviousYear, goToNextMonth, goToNextYear, goToPreviousMonth, goToPreviousYear, locale, month, nextMonthButtonIcon, nextMonthButtonLabel, nextYearButtonIcon, nextYearButtonLabel, previousMonthButtonIcon, previousMonthButtonLabel, previousYearButtonIcon, previousYearButtonLabel, }: DatePickerHeaderProps): import("react").JSX.Element; displayName: string; };