import type { Constructor } from '../types'; import type { Validator } from '.'; /** Validator that only allows instances of the given parent. */ export declare const isInstanceOf: (parent: Constructor) => Validator;