import React from 'react';
import { type MentionDescription } from '../../types';
type MentionAvatarProps = {
    selected?: boolean;
    mention: MentionDescription;
};
export declare const MentionAvatar: ({ mention, selected }: MentionAvatarProps) => React.JSX.Element;
export {};
