Repository URL to install this package:
export declare function createPredicateForProperty(propName: string): (x: any) => boolean; export declare function createInstanceofPredicate<T>(name: string, clazz: new (...args: any[]) => T): (x: any) => x is T;