import { Component, Plugin } from 'vue';
/**
 * 生成全局注册组件库中所有组件的插件
 *
 * @param {Record<string, Component>} componentsMap 组件库中所有组件与其组件名的映射 Map
 * @returns {Plugin} 全局注册组件库中所有组件的插件
 */
export declare const genCompLibGlobalRegisterPlugin: (componentsMap: Record<string, Component>) => Plugin;
