import type { App } from 'vue';
import { inject as vueInject } from 'vue';
export declare const setCurrentApp: (newApp: App | null) => void;
export declare const getCurrentApp: () => App<any> | null;
/** Wrapper around vue inject, so it can be used in plugins */
export declare const inject: typeof vueInject;
