import { ComponentProps } from 'react'; import ReactDatePicker from 'react-datepicker'; import { Props } from '../DatePicker'; type InternalProps = Props & { inline?: ComponentProps['inline']; inputOnly?: boolean; onFocus?: () => void; onSelect?: () => void; }; declare const InternalDatePickerWithForwardRef: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export default InternalDatePickerWithForwardRef;