import { ErrorMessageProps, FieldInputProps } from "formik"; import React from "react"; import { InputProps, LabelProps } from "reactstrap"; declare type FieldProps = Partial> & InputProps & { errorMessageProps?: ErrorMessageProps; labelProps?: LabelProps; labelText?: string; withLoading?: boolean; withTemplate?: boolean; }; declare const Field: React.FC; export default Field;