///
import { type ElementProps } from '../../../types/element';
export type InfiniteScrollOwnProps = {
hasMore?: boolean;
inverted?: boolean;
listener: () => void;
observerComp?: React.ReactNode;
};
export type InfiniteScrollProps = React.PropsWithChildren>;
export declare function InfiniteScroll({ children, hasMore, inverted, observerComp, listener, ...divProps }: InfiniteScrollProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=InfiniteScroll.d.ts.map