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<SimpleBarProps, 'style'>;
type SimpleBarClassesType = Readonly<{
    contentWrapper: string;
    content: string;
    track: string;
    hover: string;
    scrollbarVisibleBefore: string;
}>;
export declare const simpleBarClasses: SimpleBarClassesType;
declare const SimpleScrollbar: React.FC<Props>;
export default SimpleScrollbar;
