import type { AbstractConstructorOf } from "../helper/definition/type/abstract-constructor-of.mjs";
declare function isInstanceOf<T extends object>(value: unknown, constructor_class: AbstractConstructorOf<T>): value is T;
export { isInstanceOf };
