export declare function setDefaultLoadMode(mode: string): void; export declare class ComponentLoader { private cache; constructor(); getComponent(type: string, mode?: string): any; addComponent(type: string, component: any, mode?: string): void; removeComponent(type: string, mode?: string): void; } export declare const componentLoader: ComponentLoader;