export declare class ComponentCache { static components: { [type: string]: any; }; static registerComponent(type: string, component: any): void; static getComponent(type: string): any; static createComponent(component: any, options: any): any; }