import { LoadingMethod } from './type';
export declare type LoadingPluginType = Vue.PluginObject<undefined> & LoadingMethod;
export declare const LoadingPlugin: LoadingPluginType;
export default LoadingPlugin;
declare module 'vue/types/vue' {
    interface Vue {
        $loading: LoadingMethod;
    }
}
