import { Plugin } from 'vue';
import { VLazyImgDirective } from './vLazyImg/lazy-img.directive';
import { VLazyImgOptions } from './vLazyImg/types';
declare const plugin: Plugin<[VLazyImgOptions?]>;
export { vLazyImg, type VLazyImgDirective } from './vLazyImg/lazy-img.directive';
export { plugin as vLazyImgInstall };
export type { VLazyImgBindingValue, VLazyImgOptions } from './vLazyImg/types';
declare module 'vue' {
    interface GlobalDirectives {
        vLazyImg: VLazyImgDirective;
    }
}
