import { ComponentType } from '@angular/cdk/overlay'; import { TemplateRef } from '@angular/core'; export interface TypeMappings { [key: string]: TypeMapping; } export interface TypeMapping { type: ComponentType | TemplateRef; args?: { [key: string]: any; }; }