export interface IAiSlashGroupItem { isExpand: boolean; items: IAiSlashMenuItem[]; name: string; type: keyof typeof resourceTypeMap; } export interface IAiSlashMenuItem { [key: string]: unknown; code?: string; icon: null | string; id?: number | string; name: string; type: keyof typeof resourceTypeMap; } export declare const resourceTypeMap: { readonly tool: "工具"; readonly mcp: "MCP"; readonly doc: "知识库"; readonly knowledgebase: "知识库"; readonly shortcut: "快捷指令"; }; export type ResourceType = keyof typeof resourceTypeMap; export declare const noop: () => void; export interface ISkillListItem { description: string; icon: string; skill_code: string; skill_name: string; }