import React from "react"; import { ConditionalModeProps, DatePickerDefaultProps } from "../DatePicker.types"; type ReactDayPickerProps = DatePickerDefaultProps & ConditionalModeProps & { /** * Update selected date */ handleSelect: (newSelected: any) => void; /** * Id for the label of the popup, used for aria-labelledby */ popupLabelId?: string; }; declare const ReactDayPicker: ({ className, dropdownCaption, disabled, disableWeekends, showWeekNumber, selected, fixedWeeks, onWeekNumberClick, fromDate, toDate, month, mode: _mode, handleSelect, locale: _locale, popupLabelId, ...rest }: ReactDayPickerProps) => React.JSX.Element; export { ReactDayPicker };