import { NodeSpec } from '../../prosemirror';
/**
 * @name mention_node
 */
export interface Definition {
    type: 'mention';
    attrs: {
        id: string;
        text: string;
    };
}
export declare const mention: NodeSpec;
