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