import { RefObject } from 'react'; /** * Custom hook to detect whether a DOM element is being hovered over. * * @returns {[RefObject, boolean]} A tuple containing: * - ref: A React ref object (possibly null initially) to attach to the target DOM element. * - isHovered: A boolean state indicating if the element is currently hovered. */ export declare const useHover: () => [RefObject, boolean];