import { InfiniteScrollOptions } from '../types';
export declare function useInfiniteScroll({ threshold, loading, hasMore, onLoadMore }: InfiniteScrollOptions): {
    scrollRef: import("react").RefObject<HTMLElement | null>;
    isLoading: boolean;
    hasMore: boolean;
};
