import MutableObject from '../Types/MutableObject'; /** * @param obj - MutableObject - This is the object that we want to add a property to. * @param {string} prop - string - The property to add to the object * @param {any} value - any - The value to add to the object * @returns The object that was passed in. */ declare const addProperty: (obj: MutableObject, prop: string, value: T) => MutableObject; export default addProperty;