export declare function Singleton<T extends {
    new (...args: any[]): any;
}>(constructor: T): any;
