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