import { BoxProps } from '../Box/Box';
interface ToolbarMenuItemIconOwnProps {
    hasContent?: boolean;
}
export interface ToolbarMenuItemIconProps extends ToolbarMenuItemIconOwnProps, BoxProps {
}
export declare type ToolbarMenuItemIconStylesProps = {
    hasContent?: boolean;
};
export declare const toolbarMenuItemIconClassName = "ui-toolbar__menuitemicon";
/**
 * A ToolbarMenuItemIcon allows a user to have a dedicated component that can be targeted from the theme.
 */
export declare const ToolbarMenuItemIcon: import("@fluentui/react-bindings").ComponentWithAs<"span", ToolbarMenuItemIconProps & BoxProps>;
export {};
