import { ArticleMetadata } from '../../components/organisms/article/types'; /** * Post-processes the raw `ArticleMetadata` from `LegalContentService` / * `parseMarkdownArticle` for better visual hierarchy in legal / markdown docs: * * - Renders inline `**bold**` markdown as `` HTML. * - Groups the doc metadata line (`**Last updated:** … **Version:** …`) * into a styled inline text block at the top. * - Sets per-element spacing presets so paragraphs/sections breathe. * * Pure, side-effect-free — usable from any app or a Node script. Reusable for * any markdown-driven article (legal, docs, blog), not only legal pages. */ export declare function beautifyLegalArticle(article: ArticleMetadata): ArticleMetadata;