/** * * @param {object} data - object to traverse for the value. * @param {string} path - the JSON path to the value that should be found * @returns {unknown} - the found value. */ export declare function GetValueByJsonPath(data: unknown, path: string): ReturnType | undefined;