export declare function useHover(initial?: boolean): {
    isHover: boolean;
    onMouseEnter: () => void;
    onMouseLeave: () => void;
};
