import { AppContext } from 'vue'; /** * 注册Vue上下文 * @param key 上下文标识 * @param context 应用上下文 */ export declare function registerVueContext(key: string, context: AppContext): void; /** * 获取Vue上下文 * @param key 上下文标识 * @returns 应用上下文 */ export declare function getVueContext(key: string): AppContext | undefined;