import { DateType } from './Calendar.types'; declare const WeekHeader: () => import("react/jsx-runtime").JSX.Element; interface SelectHeaderProps { visibleDate: DateType; onChange?: (date: DateType) => void; } declare const SelectHeader: ({ visibleDate, onChange }: SelectHeaderProps) => import("react/jsx-runtime").JSX.Element; interface DateBoxProps { selected?: boolean; disabled?: boolean; date?: DateType; onChange?: (date: DateType) => void; } declare const DateBox: ({ selected, date, disabled, onChange, }: DateBoxProps) => import("react/jsx-runtime").JSX.Element; export { WeekHeader, SelectHeader, DateBox };