import React from "react"; import { type ScrollbarProps as ReactCustomScrollbarProps } from "react-custom-scrollbars"; interface ScrollbarProps extends ReactCustomScrollbarProps { style?: React.CSSProperties; [key: string]: any; } declare const Scrollbar: (props: ScrollbarProps) => React.JSX.Element; export { Scrollbar, type ScrollbarProps };