import React from 'react'; import './index.scss'; export declare type LoadMoreProps = { /** 内容 **/ children?: React.ReactNode; /** 加载状态 受控 **/ loadState?: 'loading' | 'loadMore' | 'noMore' | 'none'; /** 滚动条滚动到底部触发事件 **/ onScrollBottom?: () => void; /** 加载状态改变回调 **/ onChangeLoadState?: (state: LoadMoreProps['loadState']) => void; /** 点击加载更多回调 **/ onLoadMore?: () => void; /** 滚动区域高度 **/ scrollHeight?: number | string; /** 当前滚动区域位置 **/ scrollPosition?: number; }; declare const LoadMore: React.FC; export default LoadMore;