/*!
 * Jodit Editor PRO (https://xdsoft.net/jodit/)
 * See LICENSE.md in the project root for license information.
 * Copyright (c) 2013-2026 Valerii Chupurnov. All rights reserved. https://xdsoft.net/jodit/pro/
 */
import type { IJodit, IPlugin } from "jodit/esm/types/index";
import "./config";
import { Plugin } from "jodit/esm/core/plugin/index";
/**
 * Plugin for showing special markers inside every blocks
 */
export declare class showBlocks extends Plugin implements IPlugin {
    /** @override */
    static requires: string[];
    /** @override */
    buttons: Plugin['buttons'];
    private get style();
    /**
     * Show block is enabled
     */
    private isEnabled;
    /**
     * Enable showing block
     */
    private enable;
    /**
     * Disable showing block
     */
    private disable;
    /**
     * Toggle showing block
     */
    private toggle;
    constructor(jodit: IJodit);
    /** @override */
    protected afterInit(jodit: IJodit): void;
    /** @override */
    protected beforeDestruct(jodit: IJodit): void;
}
