/// import { CurrentCalendarPage, SelectedDate, TodayDate } from "../../../types/inputDate.type"; interface InputDateDaysSectionProps { selectedDate: SelectedDate; today: TodayDate; currentCalendarPage: CurrentCalendarPage; inputLocale: string; onChange: (value: number) => void; } declare const InputDateDaysSection: (props: InputDateDaysSectionProps) => JSX.Element; export { InputDateDaysSection };