/** * @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/pastefromofficeenhancedinliner */ import { Plugin, type PluginDependenciesOf } from "@ckeditor/ckeditor5-core"; import { PasteFromOffice } from "@ckeditor/ckeditor5-paste-from-office"; /** * The Paste from Office Enhanced inliner plugin that inlines styles passed along the content from MS Office. */ export declare class PasteFromOfficeEnhancedInliner extends Plugin { /** * @inheritDoc */ static get pluginName(): "PasteFromOfficeEnhancedInliner"; /** * @inheritDoc */ static override get isOfficialPlugin(): true; /** * @inheritDoc */ static override get isPremiumPlugin(): true; /** * @inheritDoc */ static get requires(): PluginDependenciesOf<[PasteFromOffice]>; /** * @inheritDoc */ init(): void; /** * @inheritDoc */ afterInit(): void; }