import { GroupBase, MultiValueProps, MultiValueRemoveProps } from 'react-select'; import { ExtendedOption, SizedIndicatorProps } from '../types'; /** * Custom multi-value component that manages focus state for keyboard navigation. * Tracks which multi-value is currently focused and updates the context accordingly. */ export declare const MultiValueWithColorMode: (props: MultiValueProps>) => import("react/jsx-runtime").JSX.Element; /** * Custom remove button for multi-value items. * Provides accessible removal functionality with proper ARIA labels. */ export declare const MultiValueRemoveButton: (props: MultiValueRemoveProps>) => import("react/jsx-runtime").JSX.Element; export declare const RemoveAllButton: (props: SizedIndicatorProps) => import("react/jsx-runtime").JSX.Element;