import { RichTextCommand } from './Abstracts/RichTextCommand'; /** * StrikethroughCommand class to handle strikethrough formatting in a textarea. * * @public */ export declare class StrikethroughCommand extends RichTextCommand { /** * Constructs a new instance of the `BoldCommand` class. * * @public */ constructor(); /** * Toggles strikethrough formatting on the selected text within the contenteditable div. * * @public * @returns {boolean} - True if the operation was successful, otherwise false. */ execute(): boolean; } //# sourceMappingURL=StrikethroughCommand.d.ts.map