import React from "react"; import { XHComponentCommonProps } from "../../types"; export declare type ScrolllViewProps = { /**试验性组件、暂不支持小程序端,小程序可以用taro提供的 */ direction: "x" | "y"; upperThreshold?: number; lowerThreshold?: number; onScrollToLower: () => void; } & XHComponentCommonProps & React.HTMLAttributes; declare const ScrolllView: React.FC; export default ScrolllView;