import { FunctionComponent, InputHTMLAttributes } from "react"; import { BindingProps } from "../../types"; declare type NativeInputProps = InputHTMLAttributes; declare type InputProps = NativeInputProps & BindingProps; declare const Input: FunctionComponent; export default Input;