import React from 'react'; import type { Option } from '../types'; interface Props { className?: string; highlight?: string; options: Option[]; onItemClick: (option: Option) => void; open: boolean; referenceElement: HTMLElement | null; selectedOption: Option | undefined; } export declare function Dropdown({ className, highlight, options, onItemClick, open, referenceElement, selectedOption, }: Props): React.JSX.Element; export {};