import React from 'react'; interface Props { /** type of input */ type?: 'password' | 'textarea' | 'text' | 'email'; /** placeholder text */ placeholder?: string; /** field value */ value?: string; /** event to fire onChange */ onChange?: () => void; /** event to fire onFocus */ onFocus?: () => void; /** event to fire onBlur */ onBlur?: () => void; children?: React.ReactChild; } declare const Input: ({ type, placeholder, value, onChange, onFocus, onBlur, children, }: Props) => JSX.Element; export default Input;