///
import Mark from "./Mark";
export default class Strikethrough extends Mark {
get name(): string;
get schema(): {
parseDOM: {
tag: string;
}[];
toDOM: () => import("react").ReactText[];
};
keys({ type }: {
type: any;
}): {
"Mod-d": (state: import("prosemirror-state").EditorState, dispatch?: ((tr: import("prosemirror-state").Transaction) => void) | undefined) => boolean;
};
inputRules({ type }: {
type: any;
}): import("prosemirror-inputrules").InputRule[];
get toMarkdown(): {
open: string;
close: string;
mixable: boolean;
expelEnclosingWhitespace: boolean;
};
get markdownToken(): string;
parseMarkdown(): {
mark: string;
};
}
//# sourceMappingURL=Strikethrough.d.ts.map