import { SelectProps as MuInputProps } from '@mui/material'; export type InputProps = Partial & { label?: string; options: Array<{ value: string | number; label: string | number; }>; name: string; };