import React from 'react'; import '../shared/input.scss'; interface IProps { label?: string; placeholder?: string; name?: string; defaultValue?: string; type?: 'text' | 'password' | 'number'; maxInputLength?: number; isRequired?: boolean; disabled?: boolean; readOnly?: boolean; handleChange?: (value: string) => void; handleBlur?: (value: string, isValid: boolean) => void; handleFocus?: () => void; className?: string; } declare const TextInput: React.FC; export { TextInput, };