/** * HTML document generation utilities — shell templates, hydration scripts, * metadata extraction, security escaping, and tag generators for SSR output. * * @module html */ export { getDevStyles } from "./dev-scripts.js"; export { isFullHTMLDocument } from "./html-detection.js"; export { buildAttributes, escapeHTML, escapeHtml } from "./html-escape.js"; export { injectHTMLContent } from "./html-injection.js"; export type { InjectHTMLContentOptions } from "./html-injection.js"; export { generateHTMLShellParts, wrapInHTMLShell } from "./html-shell-generator.js"; export { generateHydrationData, getDevScripts, getProdScripts, } from "./hydration-script-builder/index.js"; export { processMetadata } from "./metadata-builder.js"; export type { ProcessedMetadata } from "./metadata-builder.js"; export { extractHTMLMetadata } from "./metadata-extraction.js"; export { LEGACY_PROJECT_STYLESHEET_ID, PROJECT_STYLESHEET_ID, PROJECT_STYLESHEET_IDS, } from "./project-stylesheet-ids.js"; export { buildStructuredManagedHeadDescriptors, generateLinkTags, generateMetaTags, generateScriptTags, generateStyleTags, } from "./tag-generators.js"; export type { HTMLGenerationOptions, HTMLMetadata, HydrationData, ImportMapConfig, MDXFrontmatter, } from "./types.js"; export { buildImportMapJson, buildRootAttributes, shouldDisableLayout } from "./utils.js"; //# sourceMappingURL=index.d.ts.map