import * as react_jsx_runtime from 'react/jsx-runtime';
import { AllHTMLAttributes, ReactNode } from 'react';

interface ScrollAreaProps extends AllHTMLAttributes<HTMLDivElement> {
    children: ReactNode;
    contentClassName?: string;
    horizontal?: boolean;
    scrollbarOnHover?: boolean;
    vertical?: boolean;
}

declare const ScrollArea: {
    ({ children, horizontal, scrollbarOnHover, vertical, ...props }: ScrollAreaProps): react_jsx_runtime.JSX.Element;
    displayName: string;
};

export { ScrollArea, type ScrollAreaProps };
