import { LoadingInstance } from './createLoadingComponent'; import { LoadingOptions } from './types/loading'; import type { Directive, UnwrapRef } from 'vue'; export declare type LoadingBinding = boolean | UnwrapRef; export interface ElementLoading extends HTMLElement { INSTANCE_KEY: { instance: LoadingInstance; options: LoadingOptions; }; } declare const vLoading: Directive; export default vLoading;