import React from 'react'; import { IconProps, IconTagType } from '@uiw/react-icon'; import { IProps } from '@uiw/utils'; import './style/item.less'; export type TagType = React.ComponentType | keyof JSX.IntrinsicElements; export interface MenuItemProps extends IProps, React.HTMLProps { text?: React.ReactNode; addonAfter?: React.ReactNode; tagName?: Tag; multiline?: boolean; isSubMenuItem?: boolean; disabled?: boolean; active?: boolean; icon?: IconProps['type']; children?: React.ReactNode; } export declare const MenuItem: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>>;