import { SpinProps } from '../../components/spin';
import { ObjectDirective, VNode } from 'vue';
interface LoadingRecord {
    spin: VNode;
    props: SpinProps;
    originPosition: string;
}
export declare const vLoading: ObjectDirective<HTMLElement & {
    __loading?: LoadingRecord;
}, boolean | SpinProps>;
export {};
