interface Item { id: string; title: string; icon?: string; } type Props = { items: Item[]; value?: Item['id']; }; export declare const DropdownMenu: ({ value, items }: Props) => import("react/jsx-runtime").JSX.Element; export {};