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