@blocknote/react
Version:
A "Notion-style" block-based extensible text editor built on top of Prosemirror and Tiptap.
9 lines (8 loc) • 337 B
TypeScript
import { ReactNode } from "react";
import { FloatingUIOptions } from "./FloatingUIOptions.js";
export declare const TableCellPopover: (props: FloatingUIOptions & {
blockId: string | undefined;
colIndex: number | undefined;
rowIndex: number | undefined;
children: ReactNode;
}) => import("react/jsx-runtime").JSX.Element;