/** * Parser for `items[]`-of-typed-blocks content formats that follow the * `.block.*` naming convention — currently `is.logue.content` and * `blog.afterword.content`. Both use leaflet-style byte facets, which the * shared faceted-text renderer already understands. */ import type { StructuredRenderableBlock } from "./types.js"; export declare const ITEM_BLOCK_FORMATS: string[]; export declare function isItemBlockFormat(format: string | null | undefined): boolean; /** Renderable blocks for a namespaced `items[]` content payload. */ export declare function itemBlocks(content: unknown, contentFormat?: string | null): Array; //# sourceMappingURL=item-blocks.d.ts.map