import { ChangeEvent } from 'react'; import './index.less'; interface IProps { disabled?: boolean; placeholder?: string; value?: string; type?: string; onBlur?: () => void; onChange?: (event: ChangeEvent) => void; } declare const InputMini: ({ disabled, placeholder, value, type, onBlur, onChange, }: IProps) => JSX.Element; export default InputMini;