import React, { ChangeEvent, InputHTMLAttributes } from 'react';
type InputType = 'text' | 'email' | 'date' | 'time' | 'datetime-local' | 'month' | 'week' | 'password' | 'number' | 'tel' | 'url' | 'file' | 'search' | 'checkbox' | 'radio' | 'hidden';
interface IInputProps extends InputHTMLAttributes {
type: InputType;
className?: string;
onChange?: (event: ChangeEvent) => void;
}
declare const Input: React.ForwardRefExoticComponent>;
export default Input;