export declare class DIContainer { private static instance; private registry; constructor(); static getInstance(): DIContainer; get(key: string): E; set(key: string, value: E): void; }