/*! * Jodit Editor PRO (https://xdsoft.net/jodit/) * See LICENSE.md in the project root for license information. * Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net/jodit/pro/ */ import './config'; import type { IJodit, IPlugin } from 'jodit/types'; import { Plugin } from 'jodit/core/plugin'; export declare class showBlocks extends Plugin implements IPlugin { requires: string[]; buttons: Plugin['buttons']; private style; private isEnabled; private enable; private disable; private toggle; constructor(jodit: IJodit); protected afterInit(jodit: IJodit): void; protected beforeDestruct(jodit: IJodit): void; }