export interface Tag { indices: { start: number; end: number; }; type?: string; formatter?: any; } export interface Line { originalContent: string; content: string; parts: Array; } export interface Mention { contents: string; tag: Tag; }