import { type WithChildren, type AriaLabelingProps } from '@dynatrace/strato-components/core'; /** * @public */ export interface MenuItemIconProps extends WithChildren, AriaLabelingProps { } /** * An icon which can be used as a child of an Item. * @public */ export declare const ItemIcon: (props: MenuItemIconProps & import("react").RefAttributes) => React.ReactElement | null;