import { FC, ReactNode } from '../../../node_modules/react';
interface InfinityListProps {
    children: ReactNode;
    intersectionElementClassName?: string;
    isNext: boolean;
    onIntersection: () => void;
    intersectionElement: () => ReactNode;
}
export declare const InfinityList: FC<InfinityListProps>;
export {};
