import { type CSSProperties, type PropsWithChildren, type ReactElement } from "react";
interface ScrollableContainerProps {
    className?: string;
    style?: CSSProperties;
    scrollStyle?: CSSProperties;
}
export declare const ScrollableContainer: ({ children, className, style, scrollStyle, }: PropsWithChildren<ScrollableContainerProps>) => ReactElement;
export {};
