UNPKG

@shinyongjun/react-datepicker

Version:
17 lines (16 loc) 681 B
import { RefObject } from 'react'; import { TIsVisible } from '../../types/props'; interface IProps { valueFormat: string; startValue: Date | null; endValue: Date | null; useClearButton: boolean; disabled: boolean; setIsVisible: (value: TIsVisible) => void; inputRef: RefObject<HTMLDivElement>; isVisible: TIsVisible; onChangeStart?: (value: Date | null) => void; onChangeEnd?: (value: Date | null) => void; } export default function RangePickerInput({ valueFormat, startValue, endValue, setIsVisible, inputRef, isVisible, useClearButton, disabled, onChangeStart, onChangeEnd, }: IProps): import("react/jsx-runtime").JSX.Element; export {};