/** * Deeply searches for a value in a nested object structure and returns true * if a value is found. * * @param {Object|Array} target Structure to get a value from. * @param {string|Array} path Property Key, dot-notation path, * or array of key names which describes the target value. * * @returns {any} * @category Data */ export default function has(target: any | any[], path: string | Array): any;