import { AutocompleteProps } from "@mui/material"; import { FormikProps } from "formik"; export interface IAutoCompleteProps extends Partial> { inputName: string; formik?: FormikProps; label: string; isMultiple?: boolean; optionKey?: string; optionValue?: string; onAddNewValue?: (newValue: any) => boolean; size?: any; className?: string; hint?: string; handleChange?: (value: any) => void; errorText?: string; }