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