export type Class = new (...args: any[]) => any; export declare function isInstanceOf(val: unknown, Clazz: T): val is InstanceType; export declare function hasOwnProperty(obj: T, prop: PropertyKey): obj is T & Record; export declare function hasOwnPropertyInChain(obj: T, prop: PropertyKey): obj is T & Record;