import type { Component } from "svelte"; type $$ComponentProps = { loader: () => Promise<{ default: Component; }>; fallback?: Component | undefined; }; declare const Lazy: Component<$$ComponentProps, {}, "">; type Lazy = ReturnType; export default Lazy;