import React from 'react'; import './index.scss'; interface IProps { label?: string; name?: string; defaultValue?: string; dateNotInPast?: boolean; disabled?: boolean; readOnly?: boolean; handleChange?: (value: string) => void; handleBlur?: (value: string, isValid: boolean) => void; handleFocus?: () => void; className?: string; } declare const DateInput: React.FC; export { DateInput, };