import { type UIEvent, type ReactNode, type CSSProperties } from "react";
export interface ContentScrollProps {
    children: ReactNode;
    active?: boolean;
    style?: CSSProperties;
    className?: string;
    onScroll?: (event: UIEvent<HTMLDivElement>) => void;
}
declare const ContentScroll: ({ style, active, onScroll, ...props }: ContentScrollProps) => JSX.Element;
export { ContentScroll };
