/*! * Jodit Editor PRO (https://xdsoft.net/jodit/) * See LICENSE.md in the project root for license information. * Copyright (c) 2013-2026 Valerii Chupurnov. All rights reserved. https://xdsoft.net/jodit/pro/ */ import type { IJodit } from "jodit/esm/types/index"; import "./config"; import { Plugin } from "jodit/esm/core/plugin/index"; export declare class keyboard extends Plugin { /** @override */ hasStyle: boolean; /** @override */ static requires: string[]; /** @override */ buttons: Plugin['buttons']; constructor(jodit: IJodit); /** @override */ protected afterInit(jodit: IJodit): void; insertChar(_: unknown, _1: unknown, insertChar: string): void; private __keyboard; /** * Show or hide virtual Keyboard */ private toggleKeyboard; /** @override */ protected beforeDestruct(jodit: IJodit): void; }