import type { Directive, ComponentPublicInstance, App } from 'vue';
export interface LoadingInterface extends HTMLElement {
    vm: ComponentPublicInstance;
    loadingInstance: App | null;
    originalPosition: string;
    style: CSSStyleDeclaration;
}
export declare const DirectiveLoading: () => Directive;
