import React from "react";
import type { InfiniteScrollProps } from "./InfiniteScroll.types";
/**
* InfiniteScroll - A headless infinite scroll component
*
* This component provides infinite scroll functionality without any visual UI.
* It uses Intersection Observer to detect when the user scrolls near the bottom
* and triggers the onLoadMore callback to fetch more data.
*
* @example
* ```tsx
*
*
*
* ```
*/
declare const InfiniteScroll: React.FC;
export default InfiniteScroll;