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