import { Plugin } from 'vue';
/**
 * Vue plugin for Monocle.
 * @param options – Monocle SDK configuration options (must contain `token`)
 * @example
 * ```ts
 * import { MonoclePlugin } from 'vue-monocle'
 *
 * app.use(MonoclePlugin, {token})
 * app.mount('#app')
 * ```
 */
export declare const MonoclePlugin: Plugin;
