import { EmMark as BaseEmMark, Mark, Schema } from '../../prosemirror'; export declare class EmMarkType extends BaseEmMark { constructor(name: string, rank: number, schema: Schema); } export interface EmMark extends Mark { type: EmMarkType; } export declare function isEmMark(mark: Mark): mark is EmMark;