import { Component } from 'react'; declare class ScrollableContent extends Component<{ galleryItems: JSX.Element[]; title: string; currentVisShow: boolean; plottingScale: number; }, any> { constructor(props: any); handleScroll(event: any): void; scrollStartStopListener(callback: CallableFunction): void; render(): JSX.Element; } export default ScrollableContent;