import React from 'react'; import { InputProps } from '../../types'; export interface IFormProps extends InputProps { name: string; onClear?: (val: string) => void; required?: boolean; type?: string; } export declare const FormInput: ({ onClear, type, ...props }: IFormProps & React.InputHTMLAttributes) => JSX.Element;