/** * Returns the value of an own property of an object. * * @param {Object} obj - The object to get the property value from. * @param {string} prop - The name of the property to get the value of. * @returns {*} - The value of the property if it exists, undefined otherwise. */ export function getOwnPropValue(obj: any, prop: string): any; export default getOwnPropValue;