import type { SvelteRenderableNode, SvelteRenderContext } from './shared/node-helpers'; interface Props { node: SvelteRenderableNode; context?: SvelteRenderContext; } declare const HtmlInlineNode: import("svelte").Component; type HtmlInlineNode = ReturnType; export default HtmlInlineNode;