/// import { OutlinedInputProps } from "@mui/material"; import { FormikProps } from "formik"; import { InputTypes } from "./enums"; interface IProps extends OutlinedInputProps { inputName: string; formik?: FormikProps; label: string; type?: InputTypes; suffix?: any; hint?: string; errorText?: string; handleChange?: (value: any) => void; isFieldArray?: boolean; } declare function BaseInput({ inputName, formik, type, label, suffix, hint, className, rows, maxRows, disabled, value, errorText, handleChange, isFieldArray, ...props }: IProps): JSX.Element; export default BaseInput;