import { Plugin, App } from "vue";

declare module scroll {
    function jsSeamlessScroll(app: App, options: {
        name: string
    }): Plugin

    function cssSeamlessScroll(app: App, options: {
        name: string
    }): Plugin
}

export = scroll;