import React, { FC } from 'react'; import './styles.scss'; interface ScrollContainerProps { children: React.ReactNode; damping?: number; thumbMinSize?: number; renderByPixels?: boolean; alwaysShowTracks?: boolean; continuousScrolling?: boolean; delegateTo?: EventTarget; activeSmoothScrollOnTouchDevice?: boolean; disableSmoothScroll?: boolean; } export declare const ScrollContainer: FC; export {};