/*! * 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 './paste-code.less'; import './config'; import type { IJodit, IPlugin } from 'jodit/types'; import { Plugin } from 'jodit/core/plugin'; export declare class pasteCode extends Plugin { requires: string[]; buttons: IPlugin['buttons']; protected afterInit(jodit: IJodit): void; private openCodeEditDialog; protected beforeDestruct(jodit: IJodit): void; private createForm; private createDialog; protected onChange(): void; private prismJSIsLoaded; private highlightCode; protected onPreEdit(e: MouseEvent | HTMLPreElement): void; private parseLanguage; protected onAfterGetValueFromEditor(data: { value: string; }): void; }