import React from "react"; import { InputProps } from "src/components/Input"; export interface FormikInputProps extends Omit { /** Formik field name. */ name: string; } declare const FormikInput: React.ForwardRefExoticComponent & React.RefAttributes>; export { FormikInput };