import { type DataTestId, type WithChildren } from '@dynatrace/strato-components/core'; /** * @public */ export type MenuItemTooltipProps = WithChildren & DataTestId; /** @internal */ export declare const MenuItemTooltipWrapper: { ({ triggerElement, children, onMouseEnter, onMouseLeave, }: { triggerElement: HTMLElement | null; onMouseEnter?: () => void; onMouseLeave?: () => void; } & WithChildren): import("react/jsx-runtime.js").JSX.Element; displayName: string; }; /** * A tooltip which can be used as a child of an Item. Its content will appear * in an overlay when the Item is focused. * @public */ export declare const ItemTooltip: (props: WithChildren & DataTestId & import("react").RefAttributes) => React.ReactElement | null;