import { ProtoOrSuperClass, WithProto } from "./inheritance.mjs";
//#region src/utils/reflection/getPrototypeOf.d.ts
/**
 * A nearly useless wrapper for {@link Reflect.getPrototypeOf}
 * @param object An object with the internal `__proto__` property present in its type.
 * @returns The `__proto__` of the `object` param.
 */
declare function getPrototypeOf<T extends WithProto<ProtoOrSuperClass>>(object: T): T["__proto__"];
//#endregion
export { getPrototypeOf };
//# sourceMappingURL=getPrototypeOf.d.mts.map