import { Type } from "./Type"; import { AbstractType } from "./AbstractType"; /** * Any class that can be constructed or abstracted, definition. */ export declare type ClassType = Type | AbstractType;