import { PluginObject } from 'vue';

/**
 * Install all Nextcloud Vue components and directives globally
 * @example
 * ```js
 * import { NextcloudVuePlugin } from '@nextcloud/vue'
 * import Vue from 'vue'
 *
 * // ...
 *
 * Vue.use(NextcloudVuePlugin)
 * new Vue({
 *     // options
 * })
 * ```
 */
export declare const NextcloudVuePlugin: PluginObject<never>;