import React, { HTMLAttributes } from 'react'; interface DropdownProps { selected: boolean; imgHeight: string; imgSrc: string; imgWidth: string; title: string; } export declare const UiDropdown: React.FC>; export {};