/*! * 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 './page-break.css'; import type { IJodit } from 'jodit/types'; import { Plugin } from 'jodit/core/plugin'; import './config'; export declare class PageBreak extends Plugin { requires: string[]; buttons: { name: string; group: string; }[]; protected afterInit(jodit: IJodit): void; private decoratePageBreak; protected beforeDestruct(): void; protected onChange(): void; protected onAfterGetValueFromEditor(data: { value: string; }): void; }