import { RefObject } from 'react'; import { ScrollableWindow } from '../reach-bottom-listener'; export interface UseReachBottomParams { containerRef: RefObject; onReachBottom: () => unknown; offsetPX?: number; delay?: number; } /** * Calls `onReachBottom` when the container is scrolled near its bottom. * For fetching more pages of a collection, use `useCollectionReachBottom` * instead — it also refills under-filled containers and reacts to * collection events. */ export declare function useReachBottom({ containerRef, onReachBottom, offsetPX, delay, }: UseReachBottomParams): void; //# sourceMappingURL=useReachBottom.d.ts.map