import { AriaOnFocus } from 'react-select'; import { ExtendedOption, SizedIndicatorProps } from '../types'; /** * Generates accessible focus messages for screen readers. * Provides detailed information about the currently focused option. * * @param params - Object containing the focused option details * @returns Formatted accessibility message */ export declare const onFocus: AriaOnFocus; /** * Custom dropdown indicator that shows either a chevron or search icon. * The icon type depends on whether the select is searchable or not. */ export declare const DropdownButton: (props: SizedIndicatorProps) => import("react/jsx-runtime").JSX.Element; /** * Custom remove all button for multi-select mode. * Provides keyboard navigation and accessible removal of all selected values. */ export declare const RemoveAllButton: (props: SizedIndicatorProps) => import("react/jsx-runtime").JSX.Element;