/**
* @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 ui/highlightedtext/buttonlabelwithhighlightview
*/
import { type ButtonLabel } from "../button/buttonlabel.js";
import { HighlightedTextView } from "./highlightedtextview.js";
/**
* A button label view that can highlight a text fragment.
*/
export declare class ButtonLabelWithHighlightView extends HighlightedTextView implements ButtonLabel {
	/**
	* @inheritDoc
	*/
	style: string | undefined;
	/**
	* @inheritDoc
	*/
	text: string | undefined;
	/**
	* @inheritDoc
	*/
	id: string | undefined;
	/**
	* @inheritDoc
	*/
	constructor();
}
