import React from 'react'; import './Input.css'; import '../index.css'; declare type inputType = 'textarea' | 'text' | 'password' | 'search' | 'number' | 'url' | 'date'; declare type inputValue = string | number; interface InputProps { type?: inputType; maxWidth?: string; autoFocus?: boolean; action?: React.FormEventHandler | undefined; value?: inputValue; label?: string; disabled?: boolean; required?: boolean; isValid?: boolean | (() => boolean); title?: string; placeholder?: string; errMsg?: string; } declare const Input: React.FC; export default Input;