import React from 'react';
interface MentionProps {
    /** The display string of the mention. */
    display: string;
    /** The color of the highlight. */
    color?: string;
}
declare const Mention: React.FC<MentionProps>;
export default Mention;
