import * as React from 'react'; import { Props as SimpleBarProps } from 'simplebar-react'; import 'simplebar-react/dist/simplebar.min.css'; type Props = React.PropsWithChildren<{ style?: React.CSSProperties; maxContent?: boolean; }> & Omit; type SimpleBarClassesType = Readonly<{ contentWrapper: string; content: string; track: string; hover: string; scrollbarVisibleBefore: string; }>; export declare const simpleBarClasses: SimpleBarClassesType; declare const SimpleScrollbar: React.FC; export default SimpleScrollbar;