import { Plugin } from 'vue'; import { VZoomImgDirective, vZoomImg } from './vZoomImg/zoom-img.directive'; declare const plugin: Plugin; export { vZoomImg, type VZoomImgDirective, plugin as vZoomImgInstall }; export type { VZoomImgBindingValue } from './vZoomImg/zoom-img.handler'; declare module 'vue' { interface GlobalDirectives { vZoomImg: VZoomImgDirective; } }