import type { FC } from 'react'; import './index.less'; interface CompListProps { type?: string; clickInject?: boolean; /** * 资产相关配置 */ assetsConfig?: { compListPanel?: { /** * 是否展示安装 */ canInstall: boolean; /** * 跳转的url地址 */ url: string; /** * 标题默认安装 */ title: string; }; }; } declare const CompList: FC; export default CompList;