import { FieldInputProps, FormikProps, FormikValues } from 'formik'; import React from 'react'; import { InputProps as ReactstrapInputProps } from 'reactstrap'; declare type InputProps = { field: Partial>; form: FormikProps; props?: ReactstrapInputProps; }; declare const Input: React.FC; export default Input;