import React from 'react'; export interface IScrollProps { className?: string; children: React.ReactNode; maxHeight?: number; containerRef?: React.RefObject; containerStyle?: React.CSSProperties; onScroll?: (event: React.UIEvent) => void; isLoading?: boolean; } /** * Content that wishes to have the height of the container determined by the content, needs to pass * a maxHeight prop. For content whos height does not care about how much content is inside, do not provide a maxHeight */ export declare const BaseScroll: React.FC;