import { ComponentType } from '@angular/cdk/overlay'; export interface LazyModuleComponentInfo { name: string; componentType: ComponentType; } export interface LazyModule { getComponents(): LazyModuleComponentInfo[]; } export interface InputMap { [key: string]: any; } export interface OutputMap { [key: string]: (value: any) => void; }