import React$1, { CSSProperties } from 'react';

type ScrollOrientation = 'vertical' | 'horizontal';
interface ScrollAreaProps extends React.AllHTMLAttributes<HTMLDivElement> {
    orientation: ScrollOrientation;
    className?: string;
    style?: CSSProperties;
    children?: React.ReactNode;
}

declare const ScrollArea: React$1.ForwardRefExoticComponent<ScrollAreaProps & React$1.RefAttributes<HTMLDivElement>>;

export { type ScrollAreaProps, ScrollArea as default };
