import * as React from 'react'; import { StandardProps } from '..'; export interface SelectInputProps extends StandardProps<{}, SelectInputClassKey> { autoWidth: boolean; disabled?: boolean; native: boolean; multiple: boolean; MenuProps?: Object; name?: string; onBlur?: React.FocusEventHandler; onChange?: (event: React.ChangeEvent<{}>, child: React.ReactNode) => void, onFocus?: React.FocusEventHandler; readOnly?: boolean; renderValue?: Function; selectRef?: Function; value?: string | number | Array; } export type SelectInputClassKey = | 'root' | 'select' | 'selectMenu' | 'disabled' | 'icon' ; declare const SelectInput: React.ComponentType; export default SelectInput;