import { Type } from '@angular/core'; import { FormInputComponent } from '../../common/component-registry-types'; export declare class ComponentRegistryService { private inputComponentMap; registerInputComponent(id: string, component: Type>): void; getInputComponent(id: string): Type> | undefined; }