import { BoxProps } from '../Box/Box'; interface MenuItemIconOwnProps { /** Indicates if the parent menu item may have just icons. */ iconOnly?: boolean; /** Indicates if the parent menu item has content. */ hasContent?: boolean; } export interface MenuItemIconProps extends BoxProps, MenuItemIconOwnProps { } export declare type MenuItemIconStylesProps = Pick; export declare const menuItemIconClassName = "ui-menu__itemicon"; /** * A MenuItemIcon allows a user to have a dedicated component that can be targeted from the theme. */ export declare const MenuItemIcon: import("@fluentui/react-bindings").ComponentWithAs<"span", MenuItemIconProps & BoxProps>; export {};