import { IObjectToService, IServiceCore } from "./interfaces";
import { Service } from "./service";
export declare class ServiceStore {
    readonly services: Record<string, Service>;
    readonly cores: Record<string, IServiceCore>;
    constructor(coreServices: IServiceCore[]);
    updateOrAdd(input: IObjectToService): ServiceStore;
}
//# sourceMappingURL=serviceStore.d.ts.map