///
import { SelectProps as MUIProps } from "@material-ui/core";
import { FormControlType, FormFieldError } from "../../types/common-form-components-types";
import { OptionType } from "../../model";
export declare type SelectProps = FormControlType & FormFieldError & {
label: string;
multiple?: boolean;
helperText?: boolean;
options: (OptionType & {
MuiProps?: Exclude;
})[];
};
export declare const Select: (props: SelectProps) => JSX.Element;