import React from 'react'; import './index.less'; export interface IProps { loading: boolean; loadingText?: string; noMore?: boolean; noMoreText?: string; } /** * 上拉加载更多提示组件,可以显示 加载中/暂无更多数据。 * @param props */ export declare const LxPullUp: React.FC;