/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { ToolBarButtonComponent } from '@progress/kendo-angular-toolbar';
import { EditorCommandButton } from '../shared/editor-command-button';
import { EditorLocalizationService } from '../../localization/editor-localization.service';
import { ProviderService } from '../../common/provider.service';
import { EditorToolsService } from '../tools.service';
import * as i0 from "@angular/core";
/**
 * Configures a ToolBarButtonComponent as an Editor **Bold** tool
 * ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
 * This directive sets the SVG icon and `click` event handlers for the button.
 * The directive also updates the `selected` state of the button based on the cursor position in the editing area.
 *
 * @example
 * ```html
 * <kendo-toolbar-button kendoEditorBoldButton></kendo-toolbar-button>
 * ```
 * @remarks
 * Applied to: {@link ToolBarButtonComponent}
 */
export declare class EditorBoldButtonDirective extends EditorCommandButton {
    constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
    static ɵfac: i0.ɵɵFactoryDeclaration<EditorBoldButtonDirective, never>;
    static ɵdir: i0.ɵɵDirectiveDeclaration<EditorBoldButtonDirective, "kendo-toolbar-button[kendoEditorBoldButton]", never, {}, {}, never, never, true, never>;
}
