import { PropType } from 'vue'; import type { ExtractPublicPropTypes } from '../../_utils'; export interface ScrollTo { (x: number, y: number): void; (options: { left?: number; top?: number; behavior?: ScrollBehavior; }): void; } export declare type ScrollBy = ScrollTo; export interface ScrollbarInst { scrollTo: ScrollTo; scrollBy: ScrollBy; } declare const scrollbarProps: { readonly xScrollable: BooleanConstructor; readonly onScroll: PropType<(e: Event) => void>; readonly theme: PropType>; readonly themeOverrides: PropType>>; readonly builtinThemeOverrides: PropType>>; }; export declare type ScrollbarProps = ExtractPublicPropTypes; declare const Scrollbar: import("vue").DefineComponent<{ readonly xScrollable: BooleanConstructor; readonly onScroll: PropType<(e: Event) => void>; readonly theme: PropType>; readonly themeOverrides: PropType>>; readonly builtinThemeOverrides: PropType>>; }, { scrollbarInstRef: import("vue").Ref<{ containerRef: HTMLElement | null; contentRef: HTMLElement | null; containerScrollTop: number; syncUnifiedContainer: () => void; scrollTo: import("../../_internal/scrollbar/src/ScrollBar").ScrollTo; scrollBy: import("../../_internal/scrollbar/src/ScrollBar").ScrollBy; sync: () => void; handleMouseEnterWrapper: () => void; handleMouseLeaveWrapper: () => void; } | null>; scrollTo: ScrollTo; scrollBy: ScrollBy; }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly void>; readonly theme: PropType>; readonly themeOverrides: PropType>>; readonly builtinThemeOverrides: PropType>>; }>>, { xScrollable: boolean; }>; export default Scrollbar;