import StorageWithEvents from './storageWithEvents'; import type { driverType } from './interfaces'; import { Plugin } from 'vue'; export interface PluginOptions { prefix?: string; drivers?: driverType[]; } declare const VueWebStoragePlugin: Plugin; declare module '@vue/runtime-core' { interface ComponentCustomProperties { readonly $sessionStorage: StorageWithEvents; readonly $localStorage: StorageWithEvents; } } export default VueWebStoragePlugin;