/**
 * @name ScrollList
 * @author Lester
 * @date 2021-06-02 14:07
 */
import React, { MutableRefObject } from 'react';
interface ScrollListProps {
    scrollListRef?: MutableRefObject<any>;
    onLoad: () => Promise<any>;
    onRefresh?: () => void;
    backgroundColor?: string;
    loaded: boolean;
    className?: string;
    hideFooterTips?: boolean;
}
declare const ScrollList: React.FC<ScrollListProps>;
export default ScrollList;
