/**
* @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 basic-styles/bold
*/
import { Plugin, type PluginDependenciesOf } from "@ckeditor/ckeditor5-core";
import { BoldEditing } from "./bold/boldediting.js";
import { BoldUI } from "./bold/boldui.js";
/**
* The bold feature.
*
* For a detailed overview check the {@glink features/basic-styles Basic styles feature} guide
* and the {@glink api/basic-styles package page}.
*
* This is a "glue" plugin which loads the {@link module:basic-styles/bold/boldediting~BoldEditing bold editing feature}
* and {@link module:basic-styles/bold/boldui~BoldUI bold UI feature}.
*/
export declare class Bold extends Plugin {
	/**
	* @inheritDoc
	*/
	static get requires(): PluginDependenciesOf<[BoldEditing, BoldUI]>;
	/**
	* @inheritDoc
	*/
	static get pluginName(): "Bold";
	/**
	* @inheritDoc
	*/
	static override get isOfficialPlugin(): true;
}
