/** * @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 restricted-editing/restrictededitingmode */ import { Plugin } from '@ckeditor/ckeditor5-core'; import { RestrictedEditingModeEditing } from './restrictededitingmodeediting.js'; import { RestrictedEditingModeUI } from './restrictededitingmodeui.js'; import '../theme/restrictedediting.css'; /** * The restricted editing mode plugin. * * This is a "glue" plugin which loads the following plugins: * * * The {@link module:restricted-editing/restrictededitingmodeediting~RestrictedEditingModeEditing restricted mode editing feature}. * * The {@link module:restricted-editing/restrictededitingmodeui~RestrictedEditingModeUI restricted mode UI feature}. */ export declare class RestrictedEditingMode extends Plugin { /** * @inheritDoc */ static get pluginName(): "RestrictedEditingMode"; /** * @inheritDoc */ static get isOfficialPlugin(): true; /** * @inheritDoc */ static get requires(): readonly [typeof RestrictedEditingModeEditing, typeof RestrictedEditingModeUI]; }