/** * Decorator that restricts the instantiation of a class to one "single" * instance. This is useful when exactly one object is needed to coordinate * actions across the system. */ export declare function Singleton(): ClassDecorator;