import React from 'react'; import { IconType } from '../Icon/Icon'; export declare const DROPDOWN_MENU_ITEM_HEIGHT = 48; declare type ItemProps = { onClick?: (event?: Event) => void; icon?: IconType; className?: string; hoverEffect?: boolean; children?: React.ReactNode; }; export declare const Item: React.FC; export {};