import React from 'react';
export * from './node';
export * from './replacement';
export * from './utils';
export interface MentionNodePluginProps {
    onInsert?: () => void;
    onDelete?: () => void;
}
export declare const MentionNodePlugin: React.FC<MentionNodePluginProps>;
