/// import { SelectProps as MuiSelectProps } from '@material-ui/core/Select'; import { FieldProps } from 'formik'; export interface SelectProps extends FieldProps, Omit { } export declare function fieldToSelect({ disabled, field: { onBlur: fieldOnBlur, ...field }, form: { isSubmitting }, onBlur, ...props }: SelectProps): MuiSelectProps; export declare function Select(props: SelectProps): JSX.Element; export declare namespace Select { var displayName: string; }