import { t as CompiledMdxBody } from "./mdx-runtime-D4NdhxVq.js"; import * as react_jsx_runtime0 from "react/jsx-runtime"; //#region src/components/mdx/mdx.d.ts interface IMdxProps { /** * SECURITY: A precompiled MDX body string. This is fed through * `new Function(body)` and must originate from a trusted server-side build * step. Callers MUST mint the brand explicitly via `compileMdxBody` * (validates shape) or `trustCompiledMdxBody` (explicit unsafe). The public * `` entry no longer auto-mints a raw string — the brand is the trust * boundary and silently casting at the entry would defeat it. * * Never pass user-authored MDX. */ code: CompiledMdxBody; } declare function Mdx({ code }: IMdxProps): react_jsx_runtime0.JSX.Element; //#endregion export { Mdx as t };