import { IContract } from './type-checker'; export declare type IConstructor = { new (): T; }; export declare const instanceOf: (constructor: IConstructor) => IContract;