import type { BlockContext, EditorKit } from "doc-editor-core"; import type { FC } from "react"; import type { TableViewEvents } from "../types/interface"; export declare const Table: FC<{ editor: EditorKit; readonly: boolean; context: BlockContext; onMount: (events: TableViewEvents) => void; onUnMount: (events: TableViewEvents) => void; }>;