/**
 * Transform ES2022 `Object.hasOwn(obj, prop)` to `Object.prototype.hasOwnProperty.call(obj, prop)`.
 *
 * Compatibility: ES1
 *
 * @return {import("@babel/core").PluginObj}
 */
export default function transformObjectHasOwn(): import("@babel/core").PluginObj;
