import { BoxProps } from '../Box/Box'; interface MenuItemContentOwnProps { /** Indicates whether the parent menu item has menu. */ hasMenu?: boolean; /** Indicates whether the parent menu item has icon. */ hasIcon?: boolean; /** Indicates whether the parent menu item is inside vertical menu. */ vertical?: boolean; /** Indicates whether the parent menu item is part of submenu. */ inSubmenu?: boolean; } export interface MenuItemContentProps extends BoxProps, MenuItemContentOwnProps { } export declare type MenuItemContentStylesProps = Pick; export declare const menuItemContentClassName = "ui-menu__itemcontent"; /** * A MenuItemContent allows a user to have a dedicated component that can be targeted from the theme. */ export declare const MenuItemContent: import("@fluentui/react-bindings").ComponentWithAs<"span", MenuItemContentProps & BoxProps>; export {};