/**
* @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
*/
import { Plugin, type PluginDependenciesOf } from "@ckeditor/ckeditor5-core";
import { TrackChangesTable } from "./table.js";
/**
* Provides track changes plugin integration for {@link module:table/tableclipboard~TableClipboard table clipboard feature}.
*/
export declare class TrackChangesTableClipboard extends Plugin {
	/**
	* @inheritDoc
	*/
	static get requires(): PluginDependenciesOf<[TrackChangesTable]>;
	/**
	* @inheritDoc
	*/
	afterInit(): void;
}
