import { IControl, IServiceManager } from "./abstractions"; import { Dictionary } from "./core/Dictionary"; export declare class ServiceManager implements IServiceManager { private _Components; AddComponent(component: IControl, name?: string): void; GetComponent(name: string): IControl | undefined; ImportService(p: Promise): void; private _services; AddService(service: type, name?: string): void; GetServices(): Dictionary; GetService(service: Function): any; FindService(service: string): any; }