interface LongHoverOptions { duration?: number; } declare const useOnLongHover: (callback: () => void, { duration }?: LongHoverOptions) => (node: HTMLElement | null) => void; export { useOnLongHover };