import { FunctionComponent } from 'react'; interface ScrollbarProps { containerHeight: number; visibleListSectionLength: number; fullListLength: number; visibleFromIndex: number; noColor?: boolean; } declare const Scrollbar: FunctionComponent; export { Scrollbar };