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