import type { TOption } from '@revert/select'; import type { TMapHovered, TMapKeyboardFocused } from 'refun'; import type { TId } from '../../types'; export declare type TDropdown = { value: string; options: readonly TOption[]; onChange: (value: string) => void; } & TId & TMapHovered & TMapKeyboardFocused; export declare const Dropdown: import("refun").TComponent;