/** * @description mention element * @author wangfupeng */ declare type EmptyText = { text: ''; }; export declare type MentionElement = { type: 'mention'; value: string; info: any; children: EmptyText[]; }; export {};