export interface Newable<ReturnType> {
    new (...args: any[]): ReturnType;
}
