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