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