import { ScrollbarDirection, ScrollbarProps } from "./scrollbar.js"; import * as vue from "vue"; import { CSSProperties, StyleValue } from "vue"; //#region ../../packages/components/scrollbar/src/scrollbar.vue.d.ts declare function scrollTo(xCord: number, yCord?: number): void; declare function scrollTo(options: ScrollToOptions): void; declare var __VLS_9: {}; type __VLS_Slots = {} & { default?: (props: typeof __VLS_9) => any; }; declare const __VLS_base: vue.DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption, { distance: number; height: string; maxHeight: string; wrapStyle: string; wrapClass: string; viewStyle: string; viewClass: string; tag: string; minSize: number; tabindex: undefined; }>, { /** @description scrollbar wrap ref */wrapRef: vue.Ref; /** @description update scrollbar state manually */ update: () => void; /** @description scrolls to a particular set of coordinates */ scrollTo: typeof scrollTo; /** @description set distance to scroll top */ setScrollTop: (value: number) => void; /** @description set distance to scroll left */ setScrollLeft: (value: number) => void; /** @description handle scroll event */ handleScroll: () => void; }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, { scroll: (args_0: { scrollTop: number; scrollLeft: number; }) => void; "end-reached": (direction: ScrollbarDirection) => void; }, string, vue.PublicProps, Readonly, { distance: number; height: string; maxHeight: string; wrapStyle: string; wrapClass: string; viewStyle: string; viewClass: string; tag: string; minSize: number; tabindex: undefined; }>>> & { onScroll?: ((args_0: { scrollTop: number; scrollLeft: number; }) => any) | undefined; "onEnd-reached"?: ((direction: ScrollbarDirection) => any) | undefined; }, { tabindex: number | string; height: number | string; maxHeight: number | string; tag: keyof HTMLElementTagNameMap | (string & {}); distance: number; wrapStyle: string | false | CSSProperties | StyleValue[] | null; wrapClass: string | string[]; viewClass: string | string[]; viewStyle: string | false | CSSProperties | StyleValue[] | null; minSize: number; }, {}>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; type __VLS_TypePropsToOption = { [K in keyof T]-?: {} extends Pick ? { type: vue.PropType[K]>; } : { type: vue.PropType; required: true; } }; type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_PrettifyLocal : P[K] }; type __VLS_WithSlots = T & { new (): { $slots: S; }; }; type __VLS_PrettifyLocal = (T extends any ? { [K in keyof T]: T[K] } : { [K in keyof T as K]: T[K] }) & {}; //#endregion export { _default };