import type { IJodit } from 'jodit/types'; import { Plugin } from 'jodit/core/plugin'; import './config'; export declare class selectCells extends Plugin { requires: string[]; private get module(); protected afterInit(jodit: IJodit): void; private selectedCell; private isSelectionMode; protected onStartSelection(cell: HTMLTableCellElement): void | false; protected onOutsideClick(): void; protected onChange(): void; private onMove; private onRemoveSelection; private onStopSelection; private unselectCells; private onExecCommand; private onAfterCommand; protected beforeDestruct(jodit: IJodit): void; }