import { FC } from 'react'; export interface DropdownListOptions { [key: string]: DropdownListOption; } export interface DropdownListOption { value: string; name: string; url: string; } export interface DropdownListProps { options: DropdownListOptions; value?: string; type?: 'normal' | 'filled' | 'category'; onChange?: (val: string) => void; category?: string; } declare const DropdownList: FC; export default DropdownList;