import { Mark, MarkType, Schema } from '../../prosemirror'; export declare class MentionQueryMarkType extends MarkType { constructor(name: string, rank: number, schema: Schema); readonly inclusiveRight: boolean; toDOM(): [string, any]; } export interface MentionQueryMark extends Mark { type: MentionQueryMarkType; }