import type { Action, ExtensionAuto } from "../../../core/index.js"; export { strikeMarkName, strikeType } from "./StrikeSpecs/index.js"; declare const sAction = "strike"; export type StrikeOptions = { strikeKey?: string | null; }; export declare const Strike: ExtensionAuto; declare global { namespace WysiwygEditor { interface Actions { [sAction]: Action; } } }