/** * @license MIT * @module @whoj/utils-vue@2.4.0 * @copyright (c) 2026 Jonson B. */ import { Plugin, ObjectDirective } from 'vue'; interface ImgFallbackOptions { error?: string; loading?: string; } type ImgFallbackObjDirective = ObjectDirective; declare const vImgFallback: ImgFallbackObjDirective; declare const ImgFallback: Plugin<[undefined | ImgFallbackOptions]>; export { ImgFallback, vImgFallback }; export type { ImgFallbackOptions };