import { CachedComponent } from './interface'; export declare const isCached: (name: string) => boolean; export declare const getComponent: (name: string) => Promise; export declare const getComponentFromCache: (name: string) => CachedComponent | undefined;