import { PropType, CSSProperties, HTMLAttributes } from 'vue'; import type { ExtractInternalPropTypes, ExtractPublicPropTypes } from '../../../_utils'; export interface ScrollTo { (x: number, y: number): void; (options: { left?: number; top?: number; behavior?: ScrollBehavior; debounce?: boolean; }): void; (options: { el: HTMLElement; behavior?: ScrollBehavior; debounce?: boolean; }): void; (options: { index: number; elSize: number; behavior?: ScrollBehavior; debounce?: boolean; }): void; (options: { position: 'top' | 'bottom'; behavior?: ScrollBehavior; debounce?: boolean; }): void; } export interface ScrollBy { (x: number, y: number): void; (options: { left?: number; top?: number; behavior?: ScrollBehavior; }): void; } export interface ScrollbarInstMethods { syncUnifiedContainer: () => void; scrollTo: ScrollTo; scrollBy: ScrollBy; sync: () => void; handleMouseEnterWrapper: () => void; handleMouseLeaveWrapper: () => void; } export interface ScrollbarInst extends ScrollbarInstMethods { containerRef: HTMLElement | null; contentRef: HTMLElement | null; containerScrollTop: number; } declare const scrollbarProps: { readonly size: { readonly type: NumberConstructor; readonly default: 5; }; readonly duration: { readonly type: NumberConstructor; readonly default: 0; }; readonly scrollable: { readonly type: BooleanConstructor; readonly default: true; }; readonly xScrollable: BooleanConstructor; readonly useUnifiedContainer: BooleanConstructor; readonly triggerDisplayManually: BooleanConstructor; readonly container: PropType<() => HTMLElement | null | undefined>; readonly content: PropType<() => HTMLElement | null | undefined>; readonly containerClass: StringConstructor; readonly containerStyle: PropType; readonly contentClass: StringConstructor; readonly contentStyle: PropType; readonly horizontalRailStyle: PropType; readonly verticalRailStyle: PropType; readonly onScroll: PropType<(e: Event) => void>; readonly onWheel: PropType<(e: WheelEvent) => void>; readonly onResize: PropType<(e: ResizeObserverEntry) => void>; readonly internalOnUpdateScrollLeft: PropType<(scrollLeft: number) => void>; readonly theme: PropType>; readonly themeOverrides: PropType>>; readonly builtinThemeOverrides: PropType>>; }; export declare type ScrollbarProps = ExtractPublicPropTypes; export declare type ScrollbarInternalProps = ExtractInternalPropTypes; declare const Scrollbar: import("vue").DefineComponent<{ readonly size: { readonly type: NumberConstructor; readonly default: 5; }; readonly duration: { readonly type: NumberConstructor; readonly default: 0; }; readonly scrollable: { readonly type: BooleanConstructor; readonly default: true; }; readonly xScrollable: BooleanConstructor; readonly useUnifiedContainer: BooleanConstructor; readonly triggerDisplayManually: BooleanConstructor; readonly container: PropType<() => HTMLElement | null | undefined>; readonly content: PropType<() => HTMLElement | null | undefined>; readonly containerClass: StringConstructor; readonly containerStyle: PropType; readonly contentClass: StringConstructor; readonly contentStyle: PropType; readonly horizontalRailStyle: PropType; readonly verticalRailStyle: PropType; readonly onScroll: PropType<(e: Event) => void>; readonly onWheel: PropType<(e: WheelEvent) => void>; readonly onResize: PropType<(e: ResizeObserverEntry) => void>; readonly internalOnUpdateScrollLeft: PropType<(scrollLeft: number) => void>; readonly theme: PropType>; readonly themeOverrides: PropType>>; readonly builtinThemeOverrides: PropType>>; }, { mergedClsPrefix: import("vue").ComputedRef; containerScrollTop: import("vue").Ref; wrapperRef: import("vue").Ref; containerRef: import("vue").Ref; contentRef: import("vue").Ref; yRailRef: import("vue").Ref; xRailRef: import("vue").Ref; needYBar: import("vue").ComputedRef; needXBar: import("vue").ComputedRef; yBarSizePx: import("vue").ComputedRef; xBarSizePx: import("vue").ComputedRef; yBarTopPx: import("vue").ComputedRef; xBarLeftPx: import("vue").ComputedRef; isShowXBar: import("vue").Ref; isShowYBar: import("vue").Ref; isIos: boolean; handleScroll: (e: Event) => void; handleContentResize: () => void; handleContainerResize: (e: ResizeObserverEntry) => void; handleYScrollMouseDown: (e: MouseEvent) => void; handleXScrollMouseDown: (e: MouseEvent) => void; cssVars: import("vue").ComputedRef<{ '--n-scrollbar-bezier': string; '--n-scrollbar-color': string; '--n-scrollbar-color-hover': string; '--n-scrollbar-border-radius': string; '--n-scrollbar-width': string; '--n-scrollbar-height': string; }> | undefined; themeClass: import("vue").Ref | undefined; onRender: (() => void) | undefined; syncUnifiedContainer: () => void; scrollTo: ScrollTo; scrollBy: ScrollBy; sync: () => void; handleMouseEnterWrapper: () => void; handleMouseLeaveWrapper: () => void; }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly HTMLElement | null | undefined>; readonly content: PropType<() => HTMLElement | null | undefined>; readonly containerClass: StringConstructor; readonly containerStyle: PropType; readonly contentClass: StringConstructor; readonly contentStyle: PropType; readonly horizontalRailStyle: PropType; readonly verticalRailStyle: PropType; readonly onScroll: PropType<(e: Event) => void>; readonly onWheel: PropType<(e: WheelEvent) => void>; readonly onResize: PropType<(e: ResizeObserverEntry) => void>; readonly internalOnUpdateScrollLeft: PropType<(scrollLeft: number) => void>; readonly theme: PropType>; readonly themeOverrides: PropType>>; readonly builtinThemeOverrides: PropType>>; }>>, { size: number; duration: number; scrollable: boolean; xScrollable: boolean; useUnifiedContainer: boolean; triggerDisplayManually: boolean; }>; declare type NativeScrollbarProps = Omit; declare type MergedProps = Partial; export default Scrollbar; export declare const XScrollbar: new () => { $props: MergedProps; };