UNPKG

@blocknote/mantine

Version:

A "Notion-style" block-based extensible text editor built on top of Prosemirror and Tiptap.

11 lines (10 loc) 548 B
import { BlockSchema, InlineContentSchema, StyleSchema } from "@blocknote/core"; import { BlockNoteViewProps } from "@blocknote/react"; import { Theme } from "./BlockNoteTheme.js"; import "./style.css"; export declare const BlockNoteView: <BSchema extends BlockSchema, ISchema extends InlineContentSchema, SSchema extends StyleSchema>(props: Omit<BlockNoteViewProps<BSchema, ISchema, SSchema>, "theme"> & { theme?: "light" | "dark" | Theme | { light: Theme; dark: Theme; }; }) => import("react/jsx-runtime.js").JSX.Element;