export interface TConstructor { new (): T; } export declare type ClassConstructor = new (...args: any[]) => T;