/*! * Jodit Editor PRO (https://xdsoft.net/jodit/) * See LICENSE.md in the project root for license information. * Copyright (c) 2013-2026 Valerii Chupurnov. All rights reserved. https://xdsoft.net/jodit/pro/ */ import type { IJodit } from "jodit/esm/types/index"; import "./config"; import { Plugin } from "jodit/esm/core/plugin/index"; /** * Replaces Jodit's core image editor with the standalone `@jodit/image-editor` * (crop, resize, rotate, flip, filters, finetune, text annotations). * * The replacement is done at the module registry level — `Jodit.modules.ImageEditor` * — because the editor is instantiated via `getInstance('ImageEditor')` on the * **file browser's** own event emitter (the finder pencil, Image properties → * Edit), not on `jodit.e`. Overriding the module makes every entry point resolve * to {@link ProImageEditor} through `getInstance`'s fallback. */ export declare class imageEditorPro extends Plugin { /** @override */ static requires: string[]; /** @override */ protected afterInit(_jodit: IJodit): void; /** @override */ protected beforeDestruct(_jodit: IJodit): void; }