import * as React from 'react'; import { SelectDropdownProps } from './types'; /** * A flexible dropdown select component built on top of react-select. * * Supports both single and multi-select modes with customizable options including * icons, subtitles, right labels, and abbreviations. The component provides * accessibility features, keyboard navigation, and responsive styling. * * @example * ```tsx * // Basic single select * console.log(option)} * /> * * // Multi-select with icons * console.log(options)} * /> * * // Grouped options with extended features * * ``` */ export declare const SelectDropdown: React.FC;