import { ObjectDirective, WatchHandle, VNode } from 'vue'; import { LoadingPropsT } from './types'; declare const setVLoadingOption: (option: Partial) => void; declare const WATCH_HANDLE: unique symbol; declare const VNODE: unique symbol; type BindingValueT = boolean | Partial; export type HoistElement = HTMLElement & { [WATCH_HANDLE]?: WatchHandle; [VNODE]?: VNode; }; declare const vLoading: ObjectDirective; export { vLoading, setVLoadingOption, WATCH_HANDLE, VNODE };