import constructor from"../types/constructor";
/**
* Class decorator factory that registers the class as a singleton within
* the global container.
*
* @return {Function} The class decorator
*/declarefunctionsingleton<T>(): (target: constructor<T>) =>void;
export default singleton;