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