import type { Snippet } from 'svelte'; import type { RouteContainer } from './router.svelte'; export type RouteProps = { path: string; container?: RouteContainer; children?: Snippet; }; /** * The Route component is used to define a route in the application. * It registers the route with the router when mounted and unregisters it when destroyed. * Once registered, the route can be navigated to using the router's switchTo method. * * The children of this component make the content that will be displayed when the route is active. */ declare const Route: import("svelte").Component; type Route = ReturnType; export default Route;