/// declare module 'zent/lib/mention' { interface ICompoundMentionSuggestion { value: any content?: React.ReactNode isGroup?: boolean isDivider?: boolean icon?: string disabled?: boolean } interface IMentionProps { value: string; onChange: (val: string) => any; onSearchChange?: (search: string) => any; multiLine?: boolean; position?: 'top' | 'bottom'; suggestions: string | number | ICompoundMentionSuggestion; suggestionNotFoundContent?: React.ReactNode; triggerText?: string; className?: string; prefix?: string; } export default class Mention extends React.Component {} }