import { Mark, MarkType, Schema } from '../../prosemirror'; export declare class StrikeMarkType extends MarkType { constructor(name: string, rank: number, schema: Schema); readonly matchDOMTag: { s: null; strike: null; }; readonly matchDOMStyle: { 'text-decoration': (value: string) => false | null; }; toDOM(): [string]; } export interface StrikeMark extends Mark { type: StrikeMarkType; } export declare function isStrikeMark(mark: Mark): mark is StrikeMark;