/// import type { CommonPropsType } from '../../types'; import './style'; export interface PropsType extends CommonPropsType { scrollX?: boolean; scrollY?: boolean; scrollTop?: number; scrollLeft?: number; scrollIntoView?: string; upperThreshold?: number; lowerThreshold?: number; } export default function ScrollView({ id, scrollX, scrollY, style, scrollTop, scrollLeft, scrollIntoView, className, children, upperThreshold, lowerThreshold, events, }: { id: any; scrollX?: boolean; scrollY?: boolean; style: any; scrollTop: any; scrollLeft: any; scrollIntoView: any; className: any; children: any; upperThreshold?: number; lowerThreshold?: number; events: any; }): JSX.Element;