/** * Generic type for a class constructor * @internal */ export declare type ICtor = new (...args: any[]) => T; /** * Test if an object reference is a constructor * @param type an object to check * @internal */ export declare const isCtor: (type: any) => type is ICtor;