import { EventEmitter } from '@angular/core'; import { UserResponse } from 'stream-chat'; export interface TextareaInterface { value: string; valueChange: EventEmitter; send: EventEmitter; userMentions?: EventEmitter; pasteFromClipboard: EventEmitter; areMentionsEnabled?: boolean; mentionScope?: 'channel' | 'application'; placeholder?: string; inputMode?: 'mobile' | 'desktop'; autoFocus?: boolean; }