import { type RefObject } from 'react'; /** * Accepts an HTML Element ref, then returns a function that allows you to handle the infinite * scroll for that specific element. */ declare const useInfiniteScroll: (ref: RefObject, delay?: number) => import("./shared/types").CallbackSetter; export default useInfiniteScroll;