import { FocusEvent, MutableRefObject } from 'react';
export declare const useItemState: (menuItemRef: MutableRefObject<any> | undefined, focusRef: MutableRefObject<any> | undefined, isHovering?: boolean, isDisabled?: boolean) => {
    setHover: () => void;
    onBlur: (e: FocusEvent) => void;
    onPointerMove: () => void;
    onPointerLeave: (_: PointerEvent, keepHover: boolean) => void;
};
