import { Plugin } from '@ckeditor/ckeditor5-core'; import TableSelection from './tableselection'; import TableUtils from './tableutils'; export default class TableMouse extends Plugin { static readonly pluginName: 'TableMouse'; static readonly requires: [typeof TableSelection, typeof TableUtils]; init(): void; } declare module '@ckeditor/ckeditor5-core/src/plugincollection' { interface Plugins { TableMouse: TableMouse; } }