import { type FC } from "react"; import { type Locale } from "date-fns"; export interface DatePickerHeaderProps { setDisplayMonth: (displayMonth: Date) => void; monthSelectionAriaLabel?: string; yearSelectionAriaLabel?: string; nextButtonAriaLabel?: string; prevButtonAriaLabel?: string; locale?: Locale; className?: string; dropdownsClassName?: string; dialogContainerSelector?: string; } declare const DatePickerHeader: FC; export default DatePickerHeader; export declare function getYearButtonLabel(displayMonth: Date, locale: Locale): string; export declare function getMonthButtonLabel(displayMonth: Date, locale: Locale): string;