/** * @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 special-characters/specialcharacterstext */ import { Plugin } from '@ckeditor/ckeditor5-core'; /** * A plugin that provides special characters for the "Text" category. * * ```ts * ClassicEditor * .create( { * plugins: [ ..., SpecialCharacters, SpecialCharactersText ], * } ) * .then( ... ) * .catch( ... ); * ``` */ export declare class SpecialCharactersText extends Plugin { /** * @inheritDoc */ static get pluginName(): "SpecialCharactersText"; /** * @inheritDoc */ static get isOfficialPlugin(): true; /** * @inheritDoc */ init(): void; }