import type { ToolIconsMap } from '../icons/tools'; import type { TippyOptions } from 'vue-tippy'; export declare enum MessageToolsStatus { Disabled = "disabled",// 禁用 Hidden = "hidden" } export type AITippyProps = Partial>; export interface IToolBtn { description?: string; id?: keyof typeof ToolIconsMap; name?: string; }