import { AllHTMLAttributes, ReactNode } from 'react';

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

export type { ScrollAreaProps };
