import React, { FunctionComponent, ReactNode } from 'react'; import { BasicComponent } from '../../utils/typings'; export interface InfiniteloadingProps extends BasicComponent { hasMore: boolean; upperThreshold: number; containerId: string; isOpenRefresh: boolean; pullIcon: ReactNode; pullText: string; loadIcon: ReactNode; loadingText: string; loadMoreText: string; className: string; style: React.CSSProperties; onRefresh: (param: () => void) => void; onLoadMore: (param: () => void) => void; onScrollChange: (param: number) => void; } export declare const Infiniteloading: FunctionComponent & React.HTMLAttributes>;