import React from 'react'; import type { ReactText } from 'react'; import type { RenderLabelCallback, SelectedOption } from '../../types'; export declare type MultiValueProps = SelectedOption & Readonly<{ isFocused: boolean; renderOptionLabel: RenderLabelCallback; removeSelectedOption: (value?: ReactText) => void; }>; declare const MultiValue: React.NamedExoticComponent; export default MultiValue;