import * as React from 'react'; import { ConfigConsumerProps } from '../config-provider'; export declare type MentionPlacement = 'top' | 'bottom'; declare type SuggestionItme = React.ReactElement<{ value?: string; }> | string; export interface MentionProps { prefixCls?: string; suggestionStyle?: React.CSSProperties; defaultSuggestions?: Array; suggestions?: Array>; onSearchChange?: (value: string, trigger: string) => any; onChange?: (contentState: any) => void; notFoundContent?: any; loading?: boolean; style?: React.CSSProperties; defaultValue?: any; value?: any; className?: string; multiLines?: boolean; prefix?: string | string[]; placeholder?: string; getSuggestionContainer?: (triggerNode: Element) => HTMLElement; onFocus?: React.FocusEventHandler; onBlur?: React.FocusEventHandler; onSelect?: (suggestion: string, data?: any) => void; readOnly?: boolean; disabled?: boolean; placement?: MentionPlacement; } export interface MentionState { filteredSuggestions?: Array; focus?: Boolean; } declare class Mention extends React.Component { static getMentions: any; static defaultProps: { notFoundContent: string; loading: boolean; multiLines: boolean; placement: "bottom" | "top"; }; static Nav: any; static toString: any; static toContentState: any; private mentionEle; constructor(props: MentionProps); mentionRef: (ele: any) => void; onSearchChange: (value: string, prefix: string) => any; onChange: (editorState: any) => void; onFocus: (ev: React.FocusEvent) => void; onBlur: (ev: React.FocusEvent) => void; focus: () => void; defaultSearchChange(value: string): void; renderMention: ({ getPrefixCls }: ConfigConsumerProps) => JSX.Element; render(): JSX.Element; } export default Mention;