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