import { DataTestId } from '../../core/types/data-props.js'; import { WithChildren } from '../../core/types/with-children.js'; /** * @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").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) => import("react").ReactElement | null;