import { ServiceIdentifier } from './instantiation'; import { SyncDescriptor } from './descriptors'; export declare class ServiceCollection { private _entries; constructor(...entries: [ServiceIdentifier, any][]); set(id: ServiceIdentifier, instanceOrDescriptor: T | SyncDescriptor): T | SyncDescriptor; has(id: ServiceIdentifier): boolean; get(id: ServiceIdentifier): T | SyncDescriptor; } //# sourceMappingURL=serviceCollection.d.ts.map