/** * @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 track-changes/trackchangespreview * @publicApi */ import { Plugin, type Editor } from '@ckeditor/ckeditor5-core'; import { Dialog } from '@ckeditor/ckeditor5-ui'; import { TrackChangesData } from './trackchangesdata.js'; import '../theme/trackchangespreview.css'; /** * Plugin allowing to preview the final content where all the suggestions are accepted. */ export declare class TrackChangesPreview extends Plugin { static get requires(): readonly [typeof TrackChangesData, typeof Dialog]; static get pluginName(): "TrackChangesPreview"; /** * @inheritDoc */ static get isOfficialPlugin(): true; /** * @inheritDoc */ static get isPremiumPlugin(): true; /** * @inheritDoc */ constructor(editor: Editor); }