import type { HTMLAttributes } from 'react'; export interface OptionItem { id: string; label: string; description?: string; disabled?: boolean; } export interface OptionListProps extends HTMLAttributes { items: OptionItem[]; selectedIds?: string[]; focusedId?: string; onItemClick?: (item: OptionItem, index: number) => void; showPrefix?: boolean; disabled?: boolean; } export declare const OptionList: import("react").ForwardRefExoticComponent>;