/** * @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/integrations/tablecaption */ import { Plugin } from '@ckeditor/ckeditor5-core'; import { TrackChangesTable } from './table.js'; /** * Provides track changes plugin integration for {@link module:table/table~Table table feature} caption. */ export declare class TrackChangesTableCaption extends Plugin { /** * @inheritDoc */ static get requires(): readonly [typeof TrackChangesTable]; /** * @inheritDoc */ afterInit(): void; }