/*! * 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 { IJodit } from 'jodit/types'; import type { IEmojiData } from './interface'; import { Plugin } from 'jodit/core/plugin'; declare module 'jodit/config' { interface Config { emoji: { data: () => Promise; enableAutoComplete: boolean; recentCountLimit: number; }; } } export declare class stickers extends Plugin { private data; protected afterInit(jodit: IJodit): Promise; protected beforeDestruct(jodit: IJodit): void; private onAutoComplete; }