import { FunctionComponent } from 'react'; import './VerticalScrollbar.css'; declare type Props = { visibleSize: number; scrollbarSize: number; scrollSize: number; scrollPosition: number; onScroll: (scroll: number) => void; }; export declare const VerticalScrollbar: FunctionComponent; export {};