import type { ObjectDirective } from 'vue'; import type { LoadingOptions, LoadingInstance } from './type'; declare const LOADING_KEY: unique symbol; export type LoadingEl = HTMLElement & { [LOADING_KEY]?: { instance?: LoadingInstance; options: LoadingOptions; }; }; export type LoadingBinding = boolean | LoadingOptions; export declare const vLoading: ObjectDirective; export {};