import { Plugin, AppContext } from 'vue'; import { LoadingMethod } from './type'; export type LoadingPluginType = Plugin & LoadingMethod & { _context?: AppContext; }; export declare const LoadingPlugin: LoadingPluginType; export default LoadingPlugin;