import React, { ReactNode } from 'react'; import { Scrollbars } from 'react-custom-scrollbars'; interface IScrollBoxType { /** 自定义类名 */ className?: string; /** 盒子宽度 */ width?: string; /** 盒子高度 */ height?: string; /** 滚动内容盒子的内边距(格式同CSS的padding) */ scrollPadding?: string; children?: ReactNode; } declare const ScrollBox: React.ForwardRefExoticComponent>; export default ScrollBox;