export declare function useHoverDelay(delay?: number): [boolean, {
    onPointerEnter: () => void;
    onPointerLeave: () => void;
}];
