/** * @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 paste-from-office-enhanced/pastefromofficeenhanced * @publicApi */ import { Plugin, type PluginDependenciesOf } from "@ckeditor/ckeditor5-core"; import { PasteFromOffice } from "@ckeditor/ckeditor5-paste-from-office"; import { PasteFromOfficeEnhancedInliner } from "./pastefromofficeenhancedinliner.js"; import { PasteFromOfficeEnhancedPropagator } from "./pastefromofficeenhancedpropagator.js"; /** * The Paste from Office Enhanced feature. * * Introduces seamless content pasting from MS Office applications with improved formatting retention for a smoother * and more efficient workflow. * * For a detailed overview, check the {@glink features/pasting/paste-from-office Paste from Office Enhanced feature guide}. */ export declare class PasteFromOfficeEnhanced extends Plugin { /** * @inheritDoc */ static get pluginName(): "PasteFromOfficeEnhanced"; /** * @inheritDoc */ static override get isOfficialPlugin(): true; /** * @inheritDoc */ static override get isPremiumPlugin(): true; /** * @inheritDoc */ static get requires(): PluginDependenciesOf<[PasteFromOffice, PasteFromOfficeEnhancedInliner, PasteFromOfficeEnhancedPropagator]>; }