import { Orientation } from '@zag-js/types';
import { HTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
import { PolymorphicProps } from '../factory';
interface ScrollbarProps {
    orientation?: Orientation;
}
export interface ScrollAreaScrollbarBaseProps extends ScrollbarProps, PolymorphicProps {
}
export interface ScrollAreaScrollbarProps extends ScrollAreaScrollbarBaseProps, 
/**
 * @vue-ignore
 */
HTMLAttributes {
}
declare const _default: __VLS_WithTemplateSlots< DefineComponent<ScrollAreaScrollbarBaseProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ScrollAreaScrollbarBaseProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
    default?(_: {}): any;
}>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
