import { RefObject } from 'react'; /** * A hook that tracks whether an element is being hovered over. * @param ref React ref object for the element to monitor * @returns boolean indicating if the element is currently being hovered */ export declare function useHover(ref: RefObject): boolean;