import type { InlineNode } from '../markdown/types.js'; import type { MdRenderContext } from './md-context.js'; type $$ComponentProps = { nodes: InlineNode[]; ctx: MdRenderContext; }; declare const MdInline: import("svelte").Component<$$ComponentProps, {}, "">; type MdInline = ReturnType; export default MdInline;