/// import { SelectProps } from '@mui/material'; import { DefaultStyleProps } from './FieldFormControl'; export interface Option { value: string; label: string; } export interface SelectTextFieldProps extends DefaultStyleProps, SelectProps { options?: Option[]; label?: string; } export default function SelectTextFieldBase({ options, disabled, label, defaultStyle, ...selectProps }: SelectTextFieldProps): JSX.Element;