import type { IJodit, InsertMode } from 'jodit/types'; import { Plugin } from 'jodit/core/plugin/plugin'; import type { PasteEvent } from './interface'; import './config'; export declare class paste extends Plugin { private pasteStack; protected afterInit(jodit: IJodit): void; protected beforeDestruct(jodit: IJodit): void; private onPaste; private customPasteProcess; private defaultPasteProcess; private _isDialogOpened; private processHTML; insertByType(e: PasteEvent, html: string | Node, action: InsertMode): void; private onProcessPasteReplaceNl2Br; }