import { TemplateRef } from "@angular/core"; import { MentionListComponent } from './mention-list.component'; export interface MentionItem { items: Array<{}>; triggerChar?: string; labelKey?: string; maxItems?: number; disableSearch?: boolean; mentionListTemplate?: TemplateRef; searchList?: MentionListComponent; mentionSelect?: any; dropUp?: boolean; }