import type { Component } from 'svelte';
declare const Root: Component<{
    component: Component;
    props: Record<string, unknown>;
    onRendered: () => void;
}, {}, "">;
type Root = ReturnType<typeof Root>;
export default Root;
