import type { InfiniteScrollProps } from "./InfiniteScroll.types"; declare const useInfiniteScroll: (props: InfiniteScrollProps) => { data: { isLoading: boolean; isFetchingNextPage: boolean; hasNextPage: boolean; disabled: boolean; }; fns: { loadMore: () => Promise; reset: () => void; }; refs: { sentinelRef: import("react").RefObject; }; }; export default useInfiniteScroll;