import { GroupBase, PropsValue } from './types'; import { PublicBaseSelectProps } from './Select'; declare type StateManagedPropKeys = 'inputValue' | 'menuIsOpen' | 'onChange' | 'onInputChange' | 'onMenuClose' | 'onMenuOpen' | 'value'; declare type SelectPropsWithOptionalStateManagedProps> = Omit, StateManagedPropKeys> & Partial>; export interface StateManagerAdditionalProps