import { Component, Plugin } from 'vue';
/**
 * 生成全局注册指定组件的插件
 *
 * @param component 需要生成全局注册插件的组件
 * @returns {Plugin} 全局注册指定组件的插件
 */
export declare const genCompGlobalRegisterPlugin: (component: Component) => Plugin;
