import { FunctionalComponent } from "../../stencil-public-runtime"; import { DuetLanguage, DuetTheme } from "../../common-types"; import { DatePickerDayProps } from "./date-picker-day"; type DatePickerMonthProps = { selectedDate: Date; focusedDate: Date; labelledById: string; theme: DuetTheme; language: DuetLanguage; min?: Date; max?: Date; onDateSelect: DatePickerDayProps["onDaySelect"]; onKeyboardNavigation: DatePickerDayProps["onKeyboardNavigation"]; focusedDayRef: (element: HTMLElement) => void; onFocusEnter: (Event: FocusEvent) => void; onFocusExit: (Event: FocusEvent) => void; }; export declare const DatePickerMonth: FunctionalComponent; export {};