import { Orientation } from '@zag-js/types'; import { HTMLProps, PolymorphicProps } from '../factory'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; interface ScrollbarProps { orientation?: Orientation; } export interface ScrollAreaScrollbarBaseProps extends ScrollbarProps, PolymorphicProps { } export interface ScrollAreaScrollbarProps extends HTMLProps<'div'>, ScrollAreaScrollbarBaseProps { } export declare const ScrollAreaScrollbar: ForwardRefExoticComponent>; export {};