/*! * 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 type { CanUndef, IJodit } from 'jodit/types'; import { Plugin } from 'jodit/core/plugin'; import './config'; export declare const enum PostMessagePath { Editor = "superclub/editor", Vote = "superclub/vote", Superclub = "superclub", Chat = "superclub/chat" } export declare class vote extends Plugin { private __dialog; private __voteIframe; protected afterInit(jodit: IJodit): Promise; protected beforeDestruct(jodit: IJodit): void; toggleVote(target: CanUndef): void; private postMessageToVote; private messageHandler; private initVoteConfig; private insertVote; private applyHeight; }