import { TextFieldProps } from '@mui/material'; import type { FieldFeedbackProps } from '../../FieldFeedback'; export type InputProps = Omit & { name: string; placeholder?: string | null; feedback?: FieldFeedbackProps | null; hideArrows?: boolean; showSearchIcon?: boolean; };