/** * Finds a value in an object by the given path in dot notation. * @param {unknown} source - The object to search within. * @param {string} path - The path to the value in dot notation. * @returns {unknown} The value found at the given path, or undefined if not found. */ declare const findValueByPath: (source: unknown, path: string) => unknown; export default findValueByPath;