/** @internal */ export type ItemHoverProps = { /** Whether or not the menu item is hovered. */ isItemHovered: boolean; /** Handlers used to determine whether the itemis hovered. */ hoverProps: { onMouseEnter: () => void; onMouseLeave: () => void; onKeyDown: () => void; }; }; /** @internal */ export declare function useIsMenuItemHovered(): ItemHoverProps;