/**
* Find and return value by path, if path is not available in provided context, returns null
* @param model
* @param {string} path path to value
* @returns {any} value or null
*/declarefunctionfind(model: any, path: string): any;
export default find;