import type { App, Component, Plugin } from 'vue'; export declare let VueInstance: App; /** set the global vue instance */ export declare const setVueInstance: (Vue: App) => void; /** register a plugin to the vue app instance */ export declare const registerPlugin: (app: App, plugin: Plugin) => void; /** register a component to the vue app instance */ export declare const registerComponent: (app: App, componentName: string, component: Component) => void;