import { DirectiveBinding } from 'vue'; import { FullscreenImageProps } from '../types'; export interface HtmlElementWithMethod extends HTMLElement { openFullscreenImage: () => any; } export declare const vFullscreenImagePlugin: { mounted(el: HtmlElementWithMethod, binding: DirectiveBinding): void; beforeUnmount(el: HtmlElementWithMethod): void; };