import React from 'react';
import type { SxProps } from '@mui/system';
interface ScrollbarProps {
    sx: SxProps;
}
export default function Scrollbar({ children, sx, ...other }: React.PropsWithChildren<ScrollbarProps>): JSX.Element;
export {};
