import { Dictionary } from "../core"; import { IControl } from "./IControl"; export interface IServiceManager { AddService(service: types, name?: string): void; ImportService(p: Promise): void; GetServices(): Dictionary; GetService(serviceType: any): void; FindService(service: string): void; AddComponent(component: IControl, name?: string): void; GetComponent(name: string): IControl | undefined; }