import type { IJodit } from 'jodit/types'; import { Plugin } from 'jodit/core/plugin/plugin'; import './config'; export declare class cleanHtml extends Plugin { buttons: Plugin['buttons']; protected afterInit(jodit: IJodit): void; private get isEditMode(); protected onChangeCleanHTML(): void; private currentSelectionNode; private walker; protected startWalker(): void; protected beforeCommand(command: string): void | false; protected onBeforeSetNativeEditorValue(data: { value: string; }): boolean; protected onSafeHTML(sandBox: HTMLElement): void; protected beforeDestruct(): void; }