import { MarkExtension } from "../../MarkExtension"; export default class Strike extends MarkExtension { priority: number; get name(): string; get schema(): any; keys({ type }: { type: any; }): { "Mod-d": any; }; commands({ type }: { type: any; }): () => any; inputRules({ type }: { type: any; }): any[]; pasteRules({ type }: { type: any; }): any[]; }