/** * Parser for `org.blocknote.document#content` — BlockNote editor blocks. * Inline content is `styledText` runs (with a `styles` object) and `link` * wrappers; both are converted to AT Proto-style byte facets. Consecutive * `bulletListItem` / `numberedListItem` blocks are grouped into one list. */ import type { StructuredRenderableBlock } from "./types.js"; export declare const BLOCKNOTE_CONTENT = "org.blocknote.document#content"; /** Renderable blocks for an `org.blocknote.document#content` payload. */ export declare function blocknoteBlocks(content: unknown, contentFormat?: string | null): Array; //# sourceMappingURL=blocknote.d.ts.map