import React from 'react'; import { SelectProps } from '@mui/material/Select'; import { MenuProps } from '@mui/material/Menu'; import { InputProps } from '@mui/material/Input'; export type SelectFieldProps = Omit< SelectProps, 'placeholder' > & { placeholder?: React.ReactNode | string; size?: 'small' | 'medium'; menuProps?: Partial; inputProps?: Partial; helperText?: React.ReactNode | string; labelSecondary?: React.ReactNode; }; declare const SelectField: (props: SelectFieldProps) => JSX.Element; export default SelectField;