import { SchemaRule } from "../../types/rule-types.mjs"; //#region ../@warlock.js/seal/src/rules/common/instanceof.d.ts /** * InstanceOf rule - value must be an instance of the given constructor. * * Uses the `instanceof` operator at runtime. Useful for class instances * not representable in JSON Schema (File, Buffer, custom domain classes). */ declare const instanceofRule: SchemaRule<{ ctor: new (...args: any[]) => any; name: string; }>; //#endregion export { instanceofRule }; //# sourceMappingURL=instanceof.d.mts.map