import { RefObject } from 'react'; import { TIsVisible } from '../../types/props'; interface IProps { value: Date | null; onChange?: (value: Date | null) => void; valueFormat: string; useClearButton: boolean; disabled: boolean; inputRef: RefObject; isVisible: TIsVisible; setIsVisible: (value: TIsVisible) => void; } export default function DatePickerInput({ value, onChange, valueFormat, inputRef, useClearButton, disabled, isVisible, setIsVisible, }: IProps): import("react/jsx-runtime").JSX.Element; export {};