import { ComputedGetter, WritableComputedOptions } from 'vue'; type OptionsType = { modelValue?: ComputedGetter; list: ComputedGetter>; step?: ComputedGetter; hover?: ComputedGetter; direction?: ComputedGetter<"up" | "down" | "left" | "right">; singleWaitTime?: ComputedGetter; ease?: ComputedGetter<"ease-in" | "linear" | "ease" | "ease-out" | "ease-in-out" | string>; wheel?: ComputedGetter; visibleCount?: ComputedGetter; singleLine?: ComputedGetter; } declare module 'vue3-seamless-scroll' { export const Vue3SeamlessScroll: import('vue').DefineComponent < OptionsType, OptionsType, OptionsType, OptionsType, OptionsType, OptionsType, OptionsType, OptionsType, string, OptionsType, OptionsType, OptionsType > const install: (app: import('vue').App, options: { name: string }) => unknown; export default install; }