import React from 'react';
interface InputProps {
    className?: string;
    type: string;
    [key: string]: any;
}
declare const Input: React.FC<InputProps>;
export default Input;
