import React, { ComponentClass, FunctionComponent } from 'react'; declare const Menu: React.FC<{ items: { key: string; label: string; icon?: string | FunctionComponent | ComponentClass; iconProps?: { size?: 'small' | 'medium' | 'large'; weight?: 'thin' | 'slim' | 'thick'; color?: string; }; }[]; selectedKey: string | number; title?: string | number; onClick?: (key: string) => void; itemProps?: React.DetailedHTMLProps, HTMLDivElement>; }>; export default Menu;