import type { PropType, StyleValue, ExtractPropTypes } from 'vue'; export declare const scrollbarProps: { type: { type: PropType<"embed" | "track">; default: string; }; outerClass: (ObjectConstructor | ArrayConstructor | StringConstructor)[]; outerStyle: { type: PropType; }; hide: { type: BooleanConstructor; default: boolean; }; disableHorizontal: { type: BooleanConstructor; default: boolean; }; disableVertical: { type: BooleanConstructor; default: boolean; }; }; export type ScrollProps = ExtractPropTypes;