export declare type Instance = new (...args: any[]) => T; export declare function isInstanceOf(type: Instance): (value: T | V) => value is T; export declare function isNotInstanceOf(type: Instance): (value: T | V) => value is V; //# sourceMappingURL=instance.d.ts.map