import { MentionType } from '../../types';
import { type ForwardRefExoticComponent, type HTMLAttributes, type RefAttributes } from 'react';
export interface PrimitiveMentionProps extends HTMLAttributes<HTMLSpanElement> {
    mentionType: MentionType;
}
declare const PrimitiveMention: ForwardRefExoticComponent<PrimitiveMentionProps & RefAttributes<HTMLSpanElement>>;
export default PrimitiveMention;
