/**
 * 获取对象的属性的值，如果值为 undefined，则返回默认值
 * @param {Object/Array} obj 对象
 * @param {String/Function} property 键、路径
 * @param {object} defaultValue 默认值
 * @return {object}
 */
declare function get(obj: any, property: any, defaultValue: any): any;
export default get;
