/** * @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 format-painter/formatpainterui */ import { Plugin } from "@ckeditor/ckeditor5-core"; import { type DomEmitterMixinConstructor } from "@ckeditor/ckeditor5-utils"; declare const FormatPainterUIBase: DomEmitterMixinConstructor; /** * The format painter UI feature. It introduces the `formatPainter` dropdown with a "Continuous painting" * switch button. * * The first click on the dropdown button copies the formatting of the selected text. * Then the next click in the editor editable pastes the formatting. */ export declare class FormatPainterUI extends FormatPainterUIBase { /** * @inheritDoc */ static get pluginName(): "FormatPainterUI"; /** * @inheritDoc */ static override get isOfficialPlugin(): true; /** * @inheritDoc */ static override get isPremiumPlugin(): true; /** * @inheritDoc */ init(): void; /** * @inheritDoc */ afterInit(): void; } export {};