import type { Component } from 'svelte'; type Props = { component: Component; props: Record; onRendered: () => void; }; declare const Root: Component; type Root = ReturnType; export default Root;