/**
* @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 comments/comments/integrations/showcommenthighlights
*/
import { Plugin } from "@ckeditor/ckeditor5-core";
/**
* Provides integrations for getting editor data with `showCommentHightlights` option enabled for the features that need it.
* Some of them are similar or duplicates from the `showSuggestionHighlights` option handling in the track changes feature.
* Unfortunately, for now there's no single place where they could be shared and reused, so both plugins have to add them separately.
*/
export declare class ShowCommentHighlights extends Plugin {
	/**
	* @inheritDoc
	*/
	init(): void;
}
