/** * SingletonService decorator. * Marks a class as a Singleton, ensuring only one instance of the class * is created and shared across the application. * * @param target The target class to be decorated. */ export declare function SingletonService(target: T): T;