import { type WithAnalyticsEventsProps } from '@atlaskit/analytics-next'; import { type AriaOnFocusProps, type ClearIndicatorProps, type DropdownIndicatorProps, type FormatOptionLabelMeta, type GroupBase as GroupType, type IndicatorsContainerProps, type InputActionMeta, type InputProps, type LoadingIndicatorProps, type MultiValueGenericProps, type MultiValueProps, type MultiValueRemoveProps, type NoticeProps, type OptionProps as ReactSelectOptionProps, type Props as ReactSelectProps, type ActionMeta as RSActionMeta, type ControlProps as RSControlProps, type GroupProps as RSGroupProps, type MenuListProps as RSMenuListComponentProps, type MenuProps as RSMenuProps, type Options as RSOptionsType, type PlaceholderProps as RSPlaceholderProps, type SelectComponentsConfig as RSSelectComponentsConfig, type StylesConfig as RSStylesConfig, type ValueContainerProps as RSValueContainerProps, type OnChangeValue as RSValueType, type SelectInstance, type SingleValueProps } from '@atlaskit/react-select'; import { type AsyncProps } from '@atlaskit/react-select/async'; import type BaseSelect from '@atlaskit/react-select/base'; import { type CreatableProps } from '@atlaskit/react-select/creatable'; export type ValidationState = 'default' | 'error' | 'success'; export interface OptionType { [key: string]: any; label: string; value: string | number; } export type OptionsType