import React from "react"; import { FormControlProps as MuiFormControlProps } from "@mui/material/FormControl"; import { SelectProps } from "./Select"; declare type ExcludedProps = "onBlur" | "onChange" | "onFocus" | "onKeyDown" | "onKeyUp"; export interface SelectFieldProps extends Omit { id: string; label?: string; helperText?: string; fullWidth?: boolean; selectProps: SelectProps; } declare const SelectField: React.FC; export default SelectField;