import React from 'react'; import { SwipeLoadProps, SwipeLoadRef } from './type'; export * from './type'; /** * 向左滑动到达屏幕边缘后,超过一定距离时触发加载,常用于横划展示少量的元素,滑动到底后跳转至另外界面的场景 * @en After swiping to the left to reach the edge of the screen, the loading is triggered when the distance exceeds a certain distance. It is often used to display a small number of elements horizontally, and then jump to another interface after swiping to the end. * @type 反馈 * @type_en FeedBack * @name 左滑加载 * @name_en SwipeLoad */ declare const SwipeLoad: React.ForwardRefExoticComponent>; export default SwipeLoad;