import { HTMLAttributes } from 'react';
export interface UseHoverProps {
disabled?: boolean;
}
export interface UseHoverResult {
isHovered: boolean;
hoverProps: HTMLAttributes;
}
export declare function useHover(props: UseHoverProps): UseHoverResult;