import { Mark } from '../../core/Mark.js'; /** * Configuration options for Strike * @typedef {Object} StrikeOptions * @category Options * @property {Object} [htmlAttributes={}] - HTML attributes for strikethrough elements */ /** * @module Strike * @sidebarTitle Strike * @snippetPath /snippets/extensions/strike.mdx * @shortcut Mod-Shift-x | toggleStrike | Toggle strikethrough formatting */ export const Strike: Mark<{ htmlAttributes: {}; }, Record, { value: unknown; }>; /** * Configuration options for Strike */ export type StrikeOptions = Object; //# sourceMappingURL=strike.d.ts.map