import { MouseEvent, ComponentClass } from 'react' import { CommonEventFunction } from '@tarojs/components/types/common' import AtComponent from './base' export interface AtLoadMoreProps extends AtComponent { /** * noMore 状态显示文案样式 */ noMoreTextStyle/*;不再有文本样式*/?: string | React.CSSProperties, /** * more 状态按钮样式 */ moreBtnStyle/*;更多按钮样式*/?: string | React.CSSProperties, /** * 组件状态,more 状态显示查看更多按钮,loading 状态显示加载状态,noMore 显示无更多数据 * @default 'more' */ status/*;状态*/?: 'more'/*更多*/ | 'loading'/*;加载中*/ | 'noMore'/*;不再有*/ /** * loading 状态显示文案 * @default '加载中' */ loadingText/*;加载中文本*/?: string /** * more 状态显示文案 * @default '查看更多' */ moreText/*;更多文本*/?: string /** * noMore 状态显示文案 * @default '没有更多' */ noMoreText/*;不再有文本*/?: string /** * more 状态点击触发的事件 */ onClick/*;当点*/?: CommonEventFunction } declare const AtLoadMore: ComponentClass export default AtLoadMore