export default class Container { protected singletons: { [k: string]: object; }; constructor(); check(id: any): this; has(id: any): boolean; get(id: string): T; set(id: string, object: T): this; thunk(id: string): () => T; } //# sourceMappingURL=Container.d.ts.map