import { Component, ComponentFactoryResolver, ComponentRef, Type, ViewContainerRef } from "@angular/core";
export declare class AngularComponentFactory {
    static Instance: AngularComponentFactory;
    private creatorHash;
    registerComponent(typeName: string, componentType: Type<any>): void;
    getAllTypes(): Array<string>;
    isComponentRegistered(elementType: string): boolean;
    create(containerRef: ViewContainerRef, elementType: string, resolver: ComponentFactoryResolver): ComponentRef<Component>;
}
