import * as React from 'react'; interface Prop { children: JSX.Element; fetchNextData: () => T; more: boolean; } declare const InfinitScroll: (p: Prop) => React.ReactElement>; export default InfinitScroll;