import { DatepickerProps } from "lib/Inputs/Datepicker"; import React from "react"; import { TextInputProps } from "../TextInput"; import "./TextInputWithDatePickerHoverStyle.css"; type TextInputWithDatepickerProps = { startDate?: Date | null; endDate?: Date | null; daterange?: boolean; onDateChange?: (startDate: Date | null, endDate: Date | null) => void; openOnFocus?: boolean; textInputProps?: TextInputProps; datepickerProps?: DatepickerProps; }; export default function TextInputWithDatepickerProps({ startDate, endDate, onDateChange, daterange, openOnFocus, textInputProps, datepickerProps, }: TextInputWithDatepickerProps): React.JSX.Element; export {};