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