/// import { PluginComponent, PluginProps } from '../Plugin'; interface State { show: boolean; } interface Props extends PluginProps { config: { maxRow?: number; maxCol?: number; }; } export default class Table extends PluginComponent { static pluginName: string; static defaultConfig: { maxRow: number; maxCol: number; }; constructor(props: any); private show; private hide; render(): JSX.Element; } export {};