import React from "react"; import { InputProps } from './types'; declare const Input: ({ className, style, size, id, label, name, type, value, placeholder, onChange, onClick, ...props }: InputProps) => React.JSX.Element; export default Input;