import { MentionProps } from 'antd';
import { FC } from 'react';
import { MENTION } from '../../Types';
export interface IMentions {
    ctype: typeof MENTION;
    props: MentionProps;
}
declare const Mentions: FC<IMentions>;
export default Mentions;
