/** instanceofOr * * Equivalent to `obj instanceof a || obj instanceof b ...` * * Determine if the object is any of these types * @param obj The object to try * @param type Type to try */ export declare function instanceofOr(obj: O, type: new (...args: any[]) => T): O extends T ? true : false; /** instanceofOr * * Equivalent to `obj instanceof a || obj instanceof b ...` * * Determine if the object is any of these types * @param obj The object to try * @param types Type to try */ export declare function instanceofOr(obj: O, ...types: (new (...args: any[]) => T)[]): O extends T ? true : false; /** instanceofOr * * Equivalent to `obj instanceof a || obj instanceof b ...` * * Determine if the object is any of these types * @param obj The object to try * @param types Type to try */ export declare function instanceofOr(obj: O, ...types: (new (...args: any[]) => O)[]): true; /** instanceofOr * * Equivalent to `obj instanceof a || obj instanceof b ...` * * Determine if the object is any of these types * @param obj The object to try * @param types Type to try */ export declare function instanceofOr(obj: O, ...types: (new (...args: any[]) => any)[]): boolean; /** instanceofOr * * Equivalent to `obj instanceof a || obj instanceof b ...` * * Determine if the object is any of these types * @param obj The object to try * @param types Type to try */ export declare function instanceofOr(obj: any, ...types: (new (...args: any[]) => any)[]): boolean; /** instanceofAnd * * Equivalent to `obj instanceof a && obj instanceof b ...` * * Determine if the object is of each type * @param obj The object to try * @param type Type to try */ export declare function instanceofAnd(obj: O, type: new (...args: any[]) => T): O extends T ? true : false; /** instanceofAnd * * Equivalent to `obj instanceof a && obj instanceof b ...` * * Determine if the object is of each type * @param obj The object to try * @param types Type to try */ export declare function instanceofAnd(obj: O, ...types: (new (...args: any[]) => T)[]): O extends T ? true : false; /** instanceofAnd * * Equivalent to `obj instanceof a && obj instanceof b ...` * * Determine if the object is of each type * @param obj The object to try * @param types Type to try */ export declare function instanceofAnd(obj: O, ...types: (new (...args: any[]) => O)[]): true; /** instanceofAnd * * Equivalent to `obj instanceof a && obj instanceof b ...` * * Determine if the object is of each type * @param obj The object to try * @param types Type to try */ export declare function instanceofAnd(obj: O, ...types: (new (...args: any[]) => any)[]): boolean; /** instanceofAnd * * Equivalent to `obj instanceof a && obj instanceof b ...` * * Determine if the object is of each type * @param obj The object to try * @param types Type to try */ export declare function instanceofAnd(obj: any, ...types: (new (...args: any[]) => any)[]): boolean; /** AllInstanceofOr * * Equivalent to `a instanceof type || b instanceof type ...` * * Determine if the object is of this type * @param type Target type * @param obj The object to try */ export declare function AllInstanceofOr(type: new (...args: any[]) => T, obj: O): O extends T ? true : false; /** AllInstanceofOr * * Equivalent to `a instanceof type || b instanceof type ...` * * Determine if one of the objects is this type * @param type Target type * @param objs The object to try */ export declare function AllInstanceofOr(type: new (...args: any[]) => T, ...objs: O[]): O extends T ? true : false; /** AllInstanceofOr * * Equivalent to `a instanceof type || b instanceof type ...` * * Determine if one of the objects is this type * @param type Target type * @param objs The object to try */ export declare function AllInstanceofOr(type: new (...args: any[]) => T, ...objs: T[]): true; /** AllInstanceofOr * * Equivalent to `a instanceof type || b instanceof type ...` * * Determine if one of the objects is this type * @param type Target type * @param objs The object to try */ export declare function AllInstanceofOr(type: new (...args: any[]) => T, ...objs: any[]): boolean; /** AllInstanceofOr * * Equivalent to `a instanceof type || b instanceof type ...` * * Determine if one of the objects is this type * @param type Target type * @param objs The object to try */ export declare function AllInstanceofOr(type: new (...args: any[]) => any, ...objs: any[]): boolean; /** AllInstanceofAnd * * Equivalent to `a instanceof type && b instanceof type ...` * * Determine if the object is of this type * @param type Target type * @param obj The object to try */ export declare function AllInstanceofAnd(type: new (...args: any[]) => T, obj: O): O extends T ? true : false; /** AllInstanceofAnd * * Equivalent to `a instanceof type && b instanceof type ...` * * Determine if all objects are of this type * @param type Target type * @param objs The object to try */ export declare function AllInstanceofAnd(type: new (...args: any[]) => T, ...objs: O[]): O extends T ? true : false; /** AllInstanceofAnd * * Equivalent to `a instanceof type && b instanceof type ...` * * Determine if all objects are of this type * @param type Target type * @param objs The object to try */ export declare function AllInstanceofAnd(type: new (...args: any[]) => T, ...objs: T[]): true; /** AllInstanceofAnd * * Equivalent to `a instanceof type && b instanceof type ...` * * Determine if all objects are of this type * @param type Target type * @param objs The object to try */ export declare function AllInstanceofAnd(type: new (...args: any[]) => T, ...objs: any[]): boolean; /** AllInstanceofAnd * * Equivalent to `a instanceof type && b instanceof type ...` * * Determine if all objects are of this type * @param type Target type * @param objs The object to try */ export declare function AllInstanceofAnd(type: new (...args: any[]) => any, ...objs: any[]): boolean;