import * as React from 'react';
import { ScrollArea as ScrollArea$1 } from 'radix-ui';

type ScrollAreaProps = React.ComponentProps<typeof ScrollArea$1.Root>;
declare function ScrollArea({ className, children, ...props }: ScrollAreaProps): React.JSX.Element;

type ScrollBarProps = React.ComponentProps<typeof ScrollArea$1.ScrollAreaScrollbar>;
declare function ScrollBar({ className, orientation, ...props }: ScrollBarProps): React.JSX.Element;

export { ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps };
