import * as React from 'react'; import { StandardProps } from '..'; import { InputProps } from '../Input'; import { MenuProps } from '../Menu'; import { NativeSelectInputProps } from './NativeSelectInput'; export interface NativeSelectProps extends StandardProps, Pick { IconComponent?: React.ReactType; input?: React.ReactNode; value?: string | number; } export type NativeSelectClassKey = 'root' | 'select' | 'selectMenu' | 'disabled' | 'icon'; declare const NativeSelect: React.ComponentType; export default NativeSelect;