/** * 下拉刷新 * @filename: packages/react-components/src/components/PullRefresh/index.tsx * @author: Mr Prince * @date: 2022-09-24 13:30:42 */ import { FC } from 'react'; import type { Props } from './types'; export type { Props } from './types'; declare const PullRefresh: FC; export default PullRefresh;