export declare function useHover<T extends HTMLElement = HTMLDivElement>(): {
    ref: import("react").RefObject<T>;
    hovered: boolean;
};
