import * as React from 'react'; import { MentionsProps as RcMentionsProps } from 'rc-mentions/lib/Mentions'; export declare const Option: React.SFC; export declare type MentionPlacement = 'top' | 'bottom'; export interface OptionProps { value: string; children: React.ReactNode; [key: string]: any; } export interface MentionProps extends RcMentionsProps { loading?: boolean; } export interface MentionState { focused: boolean; } interface MentionsConfig { prefix?: string | string[]; split?: string; } interface MentionsEntity { prefix: string; value: string; } interface CompoundedComponent extends React.ForwardRefExoticComponent> { Option: typeof Option; getMentions: (value: string, config?: MentionsConfig) => MentionsEntity[]; } declare const Mentions: CompoundedComponent; export default Mentions;