import type { DocumentTree } from "./nodes.js"; import type { RendererOptions, StandardSiteDocument } from "./types.js"; /** * Normalize a Standard Site document into the framework-agnostic * {@link DocumentTree}. Every supported content format is parsed and mapped * onto the shared {@link BlockNode} vocabulary; image URLs are resolved, leading * image/heading trimming and drop-cap selection are applied, and Leaflet * footnotes are collected and numbered. * * Returns `null` when the format is unsupported or the body is empty. */ export declare function buildRenderTree(doc: StandardSiteDocument, options?: RendererOptions): DocumentTree | null; //# sourceMappingURL=build.d.ts.map