import { type RefObject } from 'react'; /** * Hook that tracks hover state * * @template T - The type of the HTML element * @returns Tuple of [ref, isHovered] * * @example * ```tsx * const Button = () => { * const [ref, isHovered] = useHover(); * return ( * * ); * }; * ``` */ export declare function useHover(): [RefObject, boolean]; //# sourceMappingURL=useHover.d.ts.map