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<MuiFormControlProps, ExcludedProps> {
    id: string;
    label?: string;
    helperText?: string;
    fullWidth?: boolean;
    selectProps: SelectProps;
}
declare const SelectField: React.FC<SelectFieldProps>;
export default SelectField;
