export declare function Singleton(preventDuplicateNew?: boolean): (cls: T) => T & SingletonOf; export interface SingletonOf { readonly singleton: T; }