import type { SvelteRenderableNode, SvelteRenderContext } from './shared/node-helpers'; type Props = { node: SvelteRenderableNode; context?: SvelteRenderContext; indexKey?: string | number; tag?: string; }; declare const InlineWrapNode: import("svelte").Component; type InlineWrapNode = ReturnType; export default InlineWrapNode;