/** Represents constructor function which require no arguments */ export declare type Constructor = new () => T; /** Check if target is constructor function */ export declare function isConstructor(target: unknown): target is Constructor;