import { Constructor } from '../types'; import Null from './Null'; /** * @name Unconstructable * @description * A type that should not be constructed */ export default class Unconstructable extends Null { constructor(); static with(typeDef: any): Constructor; }