import { BoxProps } from '../Box/Box'; interface MenuItemIndicatorOwnProps { /** Indicates if the parent menu item may have just icons. */ iconOnly?: 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; /** Indicates whether the parent menu item is active. */ active?: boolean; /** Indicates whether the parent menu item is primary. */ primary?: boolean; /** Indicates whether the parent menu item is underlined. */ underlined?: boolean; } export interface MenuItemIndicatorProps extends BoxProps, MenuItemIndicatorOwnProps { } export declare type MenuItemIndicatorStylesProps = Pick; export declare const menuItemIndicatorClassName = "ui-menu__itemindicator"; /** * A MenuItemIndicator allows a user to have a dedicated component that can be targeted from the theme. */ export declare const MenuItemIndicator: import("@fluentui/react-bindings").ComponentWithAs<"span", MenuItemIndicatorProps & BoxProps>; export {};