/** * @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/formatpainterediting */ import { Plugin } from "@ckeditor/ckeditor5-core"; /** * The format painter editing feature. It introduces two commands: `copyFormat` and `pasteFormat`. */ export declare class FormatPainterEditing extends Plugin { /** * @inheritDoc */ static get pluginName(): "FormatPainterEditing"; /** * @inheritDoc */ static override get isOfficialPlugin(): true; /** * @inheritDoc */ static override get isPremiumPlugin(): true; init(): void; /** * @inheritDoc */ override destroy(): void; } /** * An object with key-value pairs describing formatting model attributes and their values. */ export type FormattingAttributesValues = { [k: string]: unknown; };