import type { ComponentType, SvelteComponent } from 'svelte'; export type LazyLoadAction = () => Promise<{ default: ComponentType; }>; export declare const cacheComponents: Map; export declare function lazy(action: () => Promise<{ default: T; }>, name: string): Promise;