/** * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options */ /** * @module link/linkimageediting */ import { Plugin } from '@ckeditor/ckeditor5-core'; import { LinkEditing } from './linkediting.js'; import { ImageEditing, ImageUtils } from '@ckeditor/ckeditor5-image'; /** * The link image engine feature. * * It accepts the `linkHref="url"` attribute in the model for the {@link module:image/image~Image ``} element * which allows linking images. */ export declare class LinkImageEditing extends Plugin { /** * @inheritDoc */ static get requires(): readonly [typeof ImageEditing, typeof ImageUtils, typeof LinkEditing]; /** * @inheritDoc */ static get pluginName(): "LinkImageEditing"; /** * @inheritDoc */ static get isOfficialPlugin(): true; /** * @inheritDoc */ afterInit(): void; /** * Processes {@link module:link/linkconfig~LinkDecoratorAutomaticDefinition automatic decorators} definitions and * attaches proper converters that will work when linking an image.` */ private _enableAutomaticDecorators; /** * Processes transformed {@link module:link/utils/manualdecorator~LinkManualDecorator} instances and attaches proper converters * that will work when linking an image. */ private _enableManualDecorators; }