import React from 'react'; export declare type Theme = { overflowTop: string; overflowBottom: string; overflowLeft: string; overflowRight: string; }; export interface ScrollContainerProps extends React.HTMLProps { height?: string | number; scrollPositionKey?: string; theme?: Theme; } declare const ScrollContainer: { ({ children, className, height, scrollPositionKey, theme, ...props }: ScrollContainerProps): JSX.Element; displayName: string; }; export default ScrollContainer;