import { CSSProperties } from 'vue'; export interface Props { contentClass?: string; contentStyle?: CSSProperties; size?: number; trigger?: 'hover' | 'none'; autoHide?: boolean; delay?: number; xScrollable?: boolean; yScrollable?: boolean; xPlacement?: 'top' | 'bottom'; yPlacement?: 'left' | 'right'; } declare function scrollTo(...args: any[]): void; declare function scrollBy(...args: any[]): void; declare function getScrollData(): object; declare function __VLS_template(): { attrs: Partial<{}>; slots: { default?(_: {}): any; }; refs: { containerRef: HTMLDivElement; contentRef: HTMLDivElement; railVerticalRef: HTMLDivElement; railHorizontalRef: HTMLDivElement; }; rootEl: HTMLDivElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent void; scrollend: (...args: any[]) => void; }, string, import('vue').PublicProps, Readonly & Readonly<{ onScroll?: ((...args: any[]) => any) | undefined; onScrollend?: ((...args: any[]) => any) | undefined; }>, { size: number; contentClass: string; contentStyle: CSSProperties; trigger: "hover" | "none"; autoHide: boolean; delay: number; xScrollable: boolean; yScrollable: boolean; xPlacement: "top" | "bottom"; yPlacement: "left" | "right"; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, { containerRef: HTMLDivElement; contentRef: HTMLDivElement; railVerticalRef: HTMLDivElement; railHorizontalRef: HTMLDivElement; }, HTMLDivElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };