import { ComponentPropsWithoutRef } from 'react'; import { ScrollBar, ScrollArea as UiScrollArea } from '../ui/scroll-area'; export interface ScrollAreaProps extends ComponentPropsWithoutRef { orientation?: 'vertical' | 'horizontal'; scrollBarProps?: Omit, 'orientation'>; } declare function ScrollArea(props: ScrollAreaProps): import("react/jsx-runtime").JSX.Element; export { ScrollArea };